[SCM] vlc/master: New upstream release

mati75-guest at users.alioth.debian.org mati75-guest at users.alioth.debian.org
Wed Dec 11 14:15:32 UTC 2013


The following commit has been merged in the master branch:
commit bffa458b8a4ad4e9fa4616c664f4853f1bbcc273
Author: Mateusz Łukasik <mati75 at linuxmint.pl>
Date:   Wed Dec 11 13:00:30 2013 +0100

    New upstream release

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..845ca06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.pc
diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 0000000..d560975
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1,13 @@
+*.debhelper*
+tmp/
+vlc/
+vlc-nox/
+libvlc2/
+libvlccore7/
+libvlc-dev/
+libvlccore-dev/
+vlc-plugin-*/
+mozilla-plugin-vlc/
+vlc-data/
+vlc-dbg/
+*.kfreebsd*
diff --git a/debian/NEWS b/debian/NEWS
new file mode 100644
index 0000000..2bc6f86
--- /dev/null
+++ b/debian/NEWS
@@ -0,0 +1,98 @@
+vlc (1.1.0-1) unstable; urgency=low
+
+  Teletext decoding is now done through zvbi. It requires installing an
+  extra packages: vlc-plugin-zvbi.
+
+  Some control interace are now implemented in lua. The C equivalents are
+  still present.
+    + HTTP: Default is still the C-implemented one. Use -I luahttp to
+      test the lua one. Remember to edit /etc/vlc/lua/http/.hosts
+    + RC: Default is the new lua-implemented one. Use -I oldrc to use the 
+      C one.
+    + Telnet: Default is the new lua-implemented one. Use -I oldtelnet to
+      use the C one.
+
+  For other changes, see /usr/share/doc/vlc-nox/NEWS.gz
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Thu, 24 Jun 2010 22:01:26 +0100
+
+vlc (1.0.6-1) unstable; urgency=low
+
+  The rtmp access module has been removed by upstream as it is deemed too buggy.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Fri, 23 Apr 2010 11:49:18 +0200
+
+vlc (1.0.0~rc2-1) experimental; urgency=low
+
+  Important changes which migh affect your command lines and scripts
+
+    + Alsa and OSS audio capture has been splited out of the v4l and v4l2
+      accesses. Use --input-slave alsa:// or oss:// if needed.
+
+    + Image video output has been rewritten into a video-filter named 'scene'.
+ 
+  For other changes, see /usr/share/doc/vlc-nox/NEWS.gz
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 13 May 2009 14:36:54 +0200
+
+vlc (0.9.8a-2) unstable; urgency=low
+
+  HTTP interface:
+
+   The .hosts file used to control which remote hosts have access to the http
+  interface has been moved to /etc/vlc/http/hosts and is now a conffile.
+   If you do more change to the http interface, you need to do that out of
+  /usr/share/vlc/http and use --http-src option of vlc. If you don't, your
+  modifications will get lost at the next upgrade of vlc.
+
+  Running VLC as root:
+
+   Since 0.9.0, VLC can't be run as root. If you need realtime priority or if
+  you need to have VLC listening on a privileged port (<1024), then you need to
+  use vlc-wrapper.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Mon, 23 Feb 2009 22:41:46 +0000
+
+vlc (0.9.2-1) experimental; urgency=low
+
+  Important changes in this new upstream version:
+
+  * The HTTP interface is now only available on the local machine by default.
+    If you want to make it available from other machines, you will have to
+    edit the ".hosts" in /usr/share/vlc/http/ . If you're using the old http 
+    interface, it's located in /usr/share/vlc/http/old/.hosts
+ 
+  * The marq, mosaic and logo commands in the rc interface changed. They
+    now require a target name as their first argument. Example:
+    vlc --sub-filter "marq at test{marquee=Hello}" -I rc <somevideo>
+    You can then use commands like: @test marq-marquee Goodbye
+    If you didn't name the object using @test, its name will default to the
+    plugin name (hence 'marq') in this example.
+    These new commands are also available in the telnet interface.
+ 
+  * The "rtp" access output module has been removed.
+    Please use the RTP stream output instead, e.g.:
+      Old: '#std{access=rtp,mux=ts,dst=239.255.1.2:5004,sap}'
+      New: '#rtp{mux=ts,dst=239.255.1.2,port=5004,sap}'
+ 
+  * You now need to append --m3u-extvlcopt to your command line to enable
+    EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
+    of options is available to m3u playlists (CVE-2007-6683).
+ 
+  * The old access:url syntax is no longer supported to resolve ambiguities
+    with some file names. Use access://url instead.
+     E.g.:  vlc:quit -> vlc://quit ;
+            udp:@239.255.12.12 -> udp://@239.255.12.12
+ 
+  * Croping and padding in transcode are now done using the croppadd video
+    filter. For example:
+    transcode{vcodec=mp2v,vfilter=croppadd{cropttop=20,cropbottom=30,paddleft=100+}}
+ 
+  * Canvas setting in transcode is now done using the canvas video filter.
+    For example:
+    transcode{vcodec=mp2v,vfilter=canvas{width=640,height=480}}
+ 
+  For more details, see the upstream NEWS file at 
+  http://git.videolan.org/gitweb.cgi?p=vlc.git;a=blob_plain;f=NEWS;h=89fc19a6
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 03 Sep 2008 00:54:46 +0200
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..f7496ef
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,11 @@
+$Id: README.Debian 1436 2008-08-31 23:06:34Z xtophe-guest $
+
+Notes for anyone wanting to build Debian packages of VLC.
+
+ - Default configuration is supposed to be latest unstable.
+
+ - VLC does not link with libdvdcss by default, thus it will not depend
+   on the libdvdcss packages. However it will use libdvdread that can
+   optionally open libdvdcss if found. To build packages that link directly
+   against libdvdcss, remove the --without-dvdcss flag in debian/rules.
+
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..a08e843
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,23 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+For more information about quilt, see /usr/share/doc/quilt/README.source
+
+Permanent patches
+0??-*.diff: Buildsystem
+1??-*.diff: Code
+2??-*.diff: Other
+3??-*.diff: "
+
+Temporary patches
+4??-*.diff: Bugs fix most likely taken from upstream Git
+CVE-*-*.diff: Security fix
+
+
+This package uses Git-Buildpackage as a VCS to manage the packaging.
+You might experience troubles when merging the upstream branch in the sid or experimental branches.
+Try merging with -s recursive -X theirs
+Or use git checkout --theirs upstream/x.y.z -- <paths>  to sort the mess.
+
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..fc73cbf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,2976 @@
+vlc (2.1.2-1) UNRELEASED; urgency=medium
+
+  * New upstream release. (Closes: #731513)
+  * Bump Standards-Version to 3.9.5 (no changes needed).
+
+ -- Mateusz Łukasik <mati75 at linuxmint.pl>  Fri, 06 Dec 2013 21:14:20 +0100
+
+vlc (2.1.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Drop altivec patch (fixed upstream).
+  * Remove obsolete conffiles (Closes: #703750).
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 18 Nov 2013 21:46:53 +0100
+
+vlc (2.1.0-2) unstable; urgency=high
+
+  * Remove mmx and sse2 plugins on non-x86 hardware. (Closes: #727831)
+  * Disable Video4Linux2 on kFreeBSD due to a build failure. (Closes: #728130)
+  * Switch to debhelper 9.
+  * Update minimum version of build dependencies.
+  * Explicitly disable plugins that we do not build.
+  * Fix build failure on powerpc by correcting the detection of compiler flags
+    for altivec.
+  * Drop link-binaries-with-c++.patch.
+  * Remove the libvaapi plugin from vlc if libva is disabled.
+  * Enable libva on kFreeBSD.
+
+ -- Benjamin Drung <bdrung at debian.org>  Tue, 29 Oct 2013 01:55:40 +0100
+
+vlc (2.1.0-1) unstable; urgency=high
+
+  * New major upstream release. (Closes: #436339, #632965, #642187,
+    #698023, #593735, #724734, #665732, #700752, #704941, #708953,
+    #712935, #398167, #646200, #679654, #654955, LP: #982953, #301193,
+    #986785, #1038303, #1109026, #530797, #667584, #938621, #671031,
+    #1080847, #1157384, #1173943)
+  * Security: Fix buffer overflow in the mp4a packetizer CVE-2013-4388
+    (Closes: #726528)
+  * Drop configure-m4-undefine.patch. (code in question doesn't exist)
+  * Drop dvbpsi.patch. (no longer needed)
+  * Drop v4l-kfreebsd.patch. (no longer needed)
+  * pnap-grammar.patch: Fix spelling/grammar in 2.1's PNAP dialog.
+  * Remove static dependency on libproxy and add runtime dependency for
+    libproxy as per upstream changes.
+  * Use -mtune instead of --with-tuning, as it was removed.
+  * SONAME bump for libvlccore5 to libvlccore7.
+  * Update symbols for libvlc5 and libvlccore7.
+  * Update file lists to account for new/renamed/removed modules.
+  * Add missing Breaks and Replaces for libavcodec_plugin.so move.
+  * Disable the static library.
+  * Bump to lua5.2.
+  * Update debian/copyright to include LGPL where relevant, in response
+    to the VLC 2.1 relicensing.
+
+ -- Edward Wang <edward.c.wang at compdigitec.com>  Sun, 06 Oct 2013 11:12:25 -0400
+
+vlc (2.0.8-1) unstable; urgency=low
+
+  * New upstream release.
+  * Drop fix-ftbfs-flac-1.3.patch (applied upstream).
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 01 Aug 2013 14:19:42 +0200
+
+vlc (2.0.7-4) unstable; urgency=low
+
+  * Team upload.
+
+  [ Reinhard Tartler ]
+  * Remove Sam Hocevar from uploaders on his request
+
+  [ Sebastian Ramacher ]
+  * debian/patches/dvbpsi.patch: Backport patches from upstream to allow
+    building with libdvbpsi 1.0.0. (Closes: #715520)
+  * debian/patches/configure-m4-undefine.patch: Prevent m4 errors during
+    dh_autoreconf.
+
+ -- Sebastian Ramacher <sramacher at debian.org>  Wed, 24 Jul 2013 16:24:06 +0200
+
+vlc (2.0.7-3) unstable; urgency=low
+
+  * Drop unused build-dependencies on libglib2.0-0, libsvga1-dev,
+    libx11-xcb-dev, and libxt-dev. (Closes: #713989)
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 24 Jun 2013 23:07:03 +0200
+
+vlc (2.0.7-2) unstable; urgency=medium
+
+  * Fix FTBFS with FLAC 1.3, Closes: #712687
+
+ -- Reinhard Tartler <siretart at tauware.de>  Wed, 19 Jun 2013 07:38:18 +0200
+
+vlc (2.0.7-1) unstable; urgency=low
+
+  * New upstream release.
+  * Update watch file.
+
+ -- Benjamin Drung <bdrung at debian.org>  Tue, 04 Jun 2013 00:19:49 +0200
+
+vlc (2.0.6-1) unstable; urgency=low
+
+  * New upstream release (LP: #1166189).
+  * Drop backported man page patch.
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 08 Apr 2013 15:47:10 +0200
+
+vlc (2.0.5-2) unstable; urgency=low
+
+  * Bump Standards-Version to 3.9.4 (no changes needed).
+  * Override false positive hardening-no-fortify-functions lintian warnings.
+  * Fix build failure on powerpcspe. Thanks to Roland Stigge. (Closes: #701830)
+  * Backport man page update to correct title DVD syntax. (Closes: #691957)
+  * Fix apport hook. Thanks to Dmitry Shachnev. (Closes: #702942)
+
+ -- Benjamin Drung <bdrung at debian.org>  Fri, 22 Mar 2013 13:37:54 +0100
+
+vlc (2.0.5-1) unstable; urgency=low
+
+  * New upstream release.
+  * Don't let libvlc-dev depend on libvlccore-dev.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 13 Dec 2012 11:07:35 +0100
+
+vlc (2.0.4-1) unstable; urgency=low
+
+  * New upstream release.
+    - Fix crashes (LP: #947156, #958462, #960020, #979490, #1033682)
+    - Correct default encoding for Hebrew subtitles (LP: #1051552)
+  * Drop backported bp-fix-hang-caused-by-notify.patch.
+  * Build the sftp access and Opus codec plugin and add them to vlc-nox.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 18 Oct 2012 18:59:03 +0200
+
+vlc (2.0.3-3) unstable; urgency=low
+
+  * debian/vlc.postinst: Fix directory to symlink upgrade in postinst.
+    Thanks to David Prévot <taffit at debian.org> (Closes: #687657)
+  * debian/vlc.preinst: Remove insufficient fix to #613121 (similar issue).
+    Thanks to David Prévot for the patch.
+  * Cherry-pick fix for VLC hang caused by the notify plugin. (Closes: #662628,
+    LP: #970447)
+  * Drop alternative dependency on transitional ttf-freefont.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 04 Oct 2012 20:59:21 +0200
+
+vlc (2.0.3-2) unstable; urgency=low
+
+  * debian/rules: Use xz compression for binary packages.
+    Thanks to Ansgar Burchardt <ansgar at debian.org> (Closes: #683836)
+  * Add version to vlc-nox dependency of vlc-plugin-sdl (consistent with other
+    plug-ins).
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 18 Aug 2012 17:45:01 +0200
+
+vlc (2.0.3-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 21 Jul 2012 17:52:21 +0200
+
+vlc (2.0.2-2) unstable; urgency=low
+
+  * Add missing epoch to libqt4-dev build dependency.
+  * Drop libggi2-dev from build dependencies (not needed any more).
+    (Closes: #680237)
+  * The dependency ttf-freefont was renamed to fonts-freefont-ttf.
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 07 Jul 2012 19:13:07 +0200
+
+vlc (2.0.2-1) unstable; urgency=medium
+
+  [ Edward Wang ]
+  * New upstream release (Closes: #679625, #664279, LP: #689122, #936488,
+    #942126, #971106, #972615, #973051, #987231, #995003, #998538).
+    - Fix Ogg Heap buffer overflow. Thanks to Hugo Beauzée-Luyssen
+  * Add the crystalhd plugin to the vlc distribution.
+  * libcaca_plugin.so now depends on X11 in this release, so it must
+    be installed under vlc (versus vlc-nox).
+
+  [ Reinhard Tartler ]
+  * Urgency set to medium because a security issue is fixed in this release
+
+  [ Benjamin Drung ]
+  * Add new plugins to vlc-nox:
+    - crystalhd (Linux amd64 and i386 only)
+    - directfb
+    - fbosd (Linux only)
+    - omxil (Linux only)
+  * Add build dependencies for new plugins.
+  * Add new symbols to libvlccore5.
+  * Switch to debhelper 8.
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 30 Jun 2012 18:39:41 +0200
+
+vlc (2.0.1-4) unstable; urgency=high
+
+  * Add missing Breaks and Replaces for moving the documentation from vlc-data
+    away from /usr/share/doc/vlc before converting the directory into a symlink.
+    (Closes: #665743)
+
+ -- Benjamin Drung <bdrung at debian.org>  Fri, 30 Mar 2012 01:56:37 +0200
+
+vlc (2.0.1-3) unstable; urgency=high
+
+  * Replace symlink by directory in /usr/share/doc/vlc-nox.
+    (Closes: #665743, LP: #964449)
+
+ -- Benjamin Drung <bdrung at debian.org>  Wed, 28 Mar 2012 13:29:37 +0200
+
+vlc (2.0.1-2) unstable; urgency=high
+
+  * Really add the preinst from Didier Raboud to vlc to drop it's doc directory
+    before unpacking a symlink to vlc-nox's over it. (Closes: #613121, #662217)
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 24 Mar 2012 01:33:03 +0100
+
+vlc (2.0.1-1) unstable; urgency=high
+
+  * New upstream release (LP: #931318, #943014, #947814).
+  * Change build dependency from libpng12-dev to libpng-dev. (Closes: #662539)
+  * Add --enable-dbus to configure flags.
+  * Drop patches that were backported and accepted by upstream.
+  * Add missing libxinerama-dev build dependency for the Skins2 interface.
+  * Add libgtk2.0-dev back to build dependencies for the notify plugin.
+  * Set urgency to high for security fixes.
+
+ -- Benjamin Drung <bdrung at debian.org>  Fri, 23 Mar 2012 19:03:52 +0100
+
+vlc (2.0.0-6) unstable; urgency=high
+
+  * Fix FTBFS on kFreeBSD (Closes: #661819):
+    - Drop --as-needed as it breaks the build fix for kFreeBSD.
+    - Enable linsys only on Linux and exclude the plugins from non-Linux.
+      Thanks to Cyril Brulebois for the patch.
+    - Adapt the vlc-cache-gen linking patch from Sam Hocevar to also link
+      vlc with the C++ standard library.
+  * Set urgency to high for the RC bug fix.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 01 Mar 2012 22:28:30 +0100
+
+vlc (2.0.0-5) unstable; urgency=low
+
+  * Rewrite v4l kfreebsd patch.
+  * Link vlc-cache-gen with the C++ standard library. (Closes: #660934, #660935)
+  * Enable hardened build flags through dpkg-buildflags. (Closes: #658030)
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 01 Mar 2012 13:37:41 +0100
+
+vlc (2.0.0-4) unstable; urgency=low
+
+  * Enable and install Open Sound System (OSS) plugin.
+  * Fix configure flag from --enable-libv4l2 to --enable-v4l2.
+
+ -- Benjamin Drung <bdrung at debian.org>  Tue, 28 Feb 2012 23:31:14 +0100
+
+vlc (2.0.0-3) unstable; urgency=low
+
+  * Fix v4l2 build failure on kfreebsd. (Closes: #660935)
+
+ -- Benjamin Drung <bdrung at debian.org>  Sun, 26 Feb 2012 18:03:39 +0100
+
+vlc (2.0.0-2) unstable; urgency=low
+
+  * Remove nasm and yasm form build dependencies (they are not used).
+  * Bump Standards-Version to 3.9.3, no changes needed.
+  * Backport patch from upstream to the fix build failures on kfreebsd.
+    (Closes: #660935)
+  * altivec-cflags.patch: Add missing CFLAGS_* variables to pass the "-maltivec"
+    flag. This should fix the build failure on powerpc. (Closes: #660936)
+
+ -- Benjamin Drung <bdrung at debian.org>  Sun, 26 Feb 2012 01:26:21 +0100
+
+vlc (2.0.0-1) unstable; urgency=low
+
+  * New upstream release (Closes: #499381, #573064, #624027, LP: #455825,
+    #573775, #695882, #705151, #708448, #738381, #743581, #747757, #817924,
+    #931083).
+  * Remove dropped mozilla-plugin-vlc, vlc-plugin-ggi, and vlc-plugin-svgalib.
+    The Mozilla browser plug-in is now provided by a separate source tarball.
+  * Add new plugins to and remove dropped plugins from vlc-nox.
+  * Add new and remove dropped build dependencies:
+    + libbluray-dev (for Blu-ray support)
+    + libresid-builder-dev
+    + libsamplerate0-dev
+    + libsidplay2-dev
+    + lbspeexdsp-dev
+    + libxcb-composite0-dev
+    - libgtk2.0-dev
+    - xulrunner-dev
+  * vlc-plugin-fluidsynth depends on fluid-soundfont-gm or
+    musescore-soundfont-gm for having a sound font for playing MIDI files.
+  * Drop all patches (they were either backported or accepted by upstream).
+  * Update symbols for libvlc5.
+  * Install plugins.dat instead of running vlc-cache-gen in postinst.
+  * Update minimum version of build dependencies.
+  * Change Build-Dependency from libupnp3-dev to unversioned libupnp-dev.
+    (Closes: #656831)
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 18 Feb 2012 01:29:48 +0100
+
+vlc (1.1.13-1) unstable; urgency=low
+
+  * New upstream release (Closes: #604687).
+  * Drop backported patches and patches that were accepted by upstream.
+  * Refresh remaining patches.
+  * Add mailcap entry for Ogg Video (Closes: #651662).
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 31 Dec 2011 13:42:26 +0100
+
+vlc (1.1.12-3) unstable; urgency=low
+
+  [ Didier Raboud ]
+  * Install v4l2 modules on kfreebsd-*. (Closes: #648090)
+
+  [ Benjamin Drung ]
+  * Explicitly enable v4l2 on kfreebsd and build depend on libv4l-dev.
+  * Fix build failure with Iceweasel/Firefox 8.0. Thanks to Mathieu
+    Trudel-Lapierre for backporting the upstream patch.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 17 Nov 2011 00:10:53 +0100
+
+vlc (1.1.12-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add a preinst to vlc to drop it's doc directory before unpacking a
+    symlink to vlc-nox's over it. (Closes: #613121)
+
+ -- Didier Raboud <odyx at debian.org>  Mon, 07 Nov 2011 16:40:10 +0100
+
+vlc (1.1.12-2) unstable; urgency=low
+
+  * Apply patches from upstream's 1.1 maintenance branch.
+    - Turn on XVideo color key automatic painting (fix upstream #4643)
+    - Set channel map when using PulseAudio 1.0
+    - Translation updates
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 13 Oct 2011 20:17:03 +0200
+
+vlc (1.1.12-1) unstable; urgency=low
+
+  * New upstream release.
+    - Multiple fixes and improved synchronization for PulseAudio support
+      (Closes: #601826, LP: #805807).
+    - Fix segmentation fault (LP: #803006).
+    - Addd GenericName entries to desktop file (Closes: #640911).
+    - Do not ignore the --quiet flag (Closes: #531975).
+    - Fix vlc runs xdg-screensaver with signal child blocked (Closes: #640245).
+    - Fix crashes when trying to play youtube URLs (Closes: #641507).
+  * Drop xulrunner-1.9.1.patch (accepted upstream).
+  * Refresh 200_osdmenu_paths.patch.
+  * Fix typo in vlc.desktop: Name[nn] -> GenericName[nn].
+
+ -- Benjamin Drung <bdrung at debian.org>  Fri, 07 Oct 2011 01:21:06 +0200
+
+vlc (1.1.11-2) unstable; urgency=low
+
+  * Use linux-any instead of hardcoded list of non-Linux architectures.
+    (Closes: #634726)
+  * Build and install the libx264 plugin.
+  * Add firefox-dev as alternative build dependency to xulrunner-dev for Ubuntu.
+  * Build with "--with-mozilla-pkg=mozilla-plugin" rather than
+    "--with-mozilla-pkg=libxul". The plugin doesn't appear to be using XPCOM,
+    and shouldn't be linking against Mozilla libs. Thanks to Chris Coulson.
+
+ -- Benjamin Drung <bdrung at debian.org>  Tue, 26 Jul 2011 20:11:10 +0200
+
+vlc (1.1.11-1) unstable; urgency=high
+
+  * New upstream release.
+    - Fix heap overflow in RealMedia plugin (Closes: #633674, LP: #807486)
+    - Fix heap overflow in AVI plugin (Closes: #633675, LP: #807488)
+  * Call dh_autoreconf with --as-needed and drop 052_as-needed.patch.
+  * Drop backported patches.
+  * Drop libschroedinger weaken patch (upstream weakened it to 1.0.6).
+  * Refresh remaining patches.
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 18 Jul 2011 10:26:56 +0200
+
+vlc (1.1.10-1) unstable; urgency=high
+
+  [ Benjamin Drung ]
+  * New upstream release.
+    - Security: Fix XSPF integer overflow (CVE-2011-2194) (LP: #795410)
+    - Improve .desktop file:
+      - Add smb as supported protocol (Closes: #622879, LP: #737192)
+      - add video/webm to supported MIME formats (LP: #769463)
+    - Fix libdvdread errors while playing ogg files (Closes: #622935)
+    - Support three channels in pulseaudio output plugin (LP: 743478)
+    - PulseAudio output re-written due to unstability of the current one
+      (LP: #743323)
+    - Fix crashes (LP: #754497, #785979)
+    - Qt: allow drag and drop of any URL, not just a local file (LP: #664030)
+    - Fix libvlcplugin.so: undefined symbol: NPP_Initialize (LP: #722690)
+  * Refresh patches.
+  * Drop as-needed patch due to autoreconf run.
+  * Backport PulseAudio build fix.
+  * Add GNOME MIME types for Ogg Vorbis and Ogg Theora (Closes: #629619).
+  * Mention potcast support in package description (Closes: #488771).
+
+  [ Reinhard Tartler ]
+  * run autoreconf on the buildds
+  * Weaken dependencies on libschroedinger
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 11 Jun 2011 19:32:24 +0200
+
+vlc (1.1.9-1) unstable; urgency=medium
+
+  * New upstream release.
+    - Fix heap corruption in MP4 demuxer (LP: #756368).
+    - Fix fullscreen controller has no background in KDE4 (LP: #661020).
+  * Refresh patches and drop backported VideoLAN-SA-1103.patch.
+  * Adjust the vlc lintian-overrides for the latest lintian version.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 14 Apr 2011 11:18:57 +0200
+
+vlc (1.1.8-3) unstable; urgency=medium
+
+  * Fix heap corruption in MP4 demuxer
+    - VideoLAN-SA-1103
+    - Thanks to Rémi Denis-Courmont
+  * Set urgency to medium
+  * Set policy to 3.9.2 (no change needed) 
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Mon, 11 Apr 2011 22:12:15 +0100
+
+vlc (1.1.8-2) unstable; urgency=low
+
+  * Require libschroedinger >= 1.0.10 (Closes: #619858)
+  * Relax libmatroska-dev versionned b-depedency 
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Mon, 28 Mar 2011 23:18:04 +0100
+
+vlc (1.1.8-1) unstable; urgency=low
+
+  * New upstream release.
+    - Fix a busy loop and socket leak in lua (Closes: #607869).
+  * Refresh xulrunner patch.
+  * Drop backported libmatroska 1.1 patch.
+
+ -- Benjamin Drung <bdrung at debian.org>  Thu, 24 Mar 2011 14:14:36 +0100
+
+vlc (1.1.7-4) unstable; urgency=low
+
+  * v4l is gone from the linux 2.6.38 kernel. Build only v4l2.
+
+ -- Benjamin Drung <bdrung at debian.org>  Sat, 19 Mar 2011 22:29:04 +0100
+
+vlc (1.1.7-3) unstable; urgency=low
+
+  * adjust debian/source/local-options to team guidelines
+  * Fix building against libmatroska 1.1, Closes: #614088
+  * Add myself to Uploaders.
+  * build against libmatroska 1.1.0
+
+ -- Reinhard Tartler <siretart at tauware.de>  Sun, 06 Mar 2011 11:16:48 +0100
+
+vlc (1.1.7-2) unstable; urgency=low
+
+  * Upload to unstable.
+  * Make vlc compatible with xulrunner 1.9.1.
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 07 Feb 2011 23:16:02 +0100
+
+vlc (1.1.7-1) experimental; urgency=low
+
+  * New upstream release.
+  * Update debian/watch.
+  * Drop backported patch and refresh remaining patches.
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 31 Jan 2011 23:25:12 +0100
+
+vlc (1.1.6-1) experimental; urgency=low
+
+  [ Reinhard Tartler ]
+  * Tighten some build dependencies (Closes: #605638)
+
+  [ Benjamin Drung ]
+  * New upstream release.
+    - Fix heap buffer overflow in Real demuxer (CVE-2010-3907) (LP: #690173)
+    - Fix blue face issue with X11 ouput (LP: #665298)
+    - Fix crash with SIGSEGV in QMetaObject::activate() (LP: #448082)
+    - Fix heap overflow in CDG decoder and XML heap corruption (LP: #707154)
+  * Drop backported patches.
+  * Tighten more build dependencies after reviewing configure.ac.
+  * Update my email address.
+  * Add lirc build failure fix patch.
+  * Build depends on libgtk2.0-dev for notify module.
+
+ -- Benjamin Drung <bdrung at debian.org>  Mon, 24 Jan 2011 23:16:54 +0100
+
+vlc (1.1.5-3) experimental; urgency=low
+
+  * Apply upstream fix for KDE device actions. (LP: #542293)
+
+ -- Benjamin Drung <bdrung at ubuntu.com>  Fri, 26 Nov 2010 00:26:15 +0100
+
+vlc (1.1.5-2) experimental; urgency=low
+
+  [ Reinhard Tartler ]
+  * fix Breaks/Replaces for moving avcodec module around (Closes: #603912)
+
+  [ Benjamin Drung ]
+  * Fix KDE device action file locations. (LP: #542293) - thanks to Lari Natri
+  * Fixed wrong aspect ratio in transcoded image from webcam.
+    (Closes: #603888, LP: #672304)
+
+ -- Benjamin Drung <bdrung at ubuntu.com>  Wed, 24 Nov 2010 00:19:39 +0100
+
+vlc (1.1.5-1) experimental; urgency=low
+
+  * New upstream release.
+  * Fix path typo in NEWS file. (Closes: #599314)
+  * Install all docs into /usr/share/doc/vlc-nox and link the vlc doc dir to it.
+  * Recommend xdg-utils, because xdg-screensaver is required for disabling
+    the screensaver. (Closes: #436339)
+  * Add libxscreensaver plugin to vlc.
+  * Add new symbol to libvlc5.
+
+ -- Benjamin Drung <bdrung at ubuntu.com>  Sun, 14 Nov 2010 21:27:56 +0100
+
+vlc (1.1.4-1) experimental; urgency=low
+
+  [ Christophe Mutricy ]
+  * New upstream bugfix release
+    + Remove unneeded patch
+
+  [ Benjamin Drung ]
+  * Symlink corresponding FreeSans system font instead of linking to DejaVu.
+
+ -- Benjamin Drung <bdrung at ubuntu.com>  Sun, 05 Sep 2010 01:47:07 +0200
+
+vlc (1.1.3-2) experimental; urgency=low
+
+  [ Christophe Mutricy ]
+  * Depends on xulrunner-dev >= 1.9.2
+  * Activate VA-API (Closes: #587792, LP: #539406)
+
+  [ Benjamin Drung ]
+  * Switch to dh7.
+  * Move libavcodec plugin from vlc-nox to vlc.
+  * Add Xb-Npp header to mozilla-plugin-vlc package. (Not doing anything
+    on Debian at the moment, see #484010)
+  * Add apport hook to include more VLC dependencies in bug reports and
+    install it on Ubuntu.
+
+ -- Benjamin Drung <bdrung at ubuntu.com>  Thu, 19 Aug 2010 22:27:45 +0200
+
+vlc (1.1.3-1) unstable; urgency=medium
+
+  [ Benjamin Drung ]
+  * New upstream release.
+    + Fix insufficient input validation in TagLib plugin.
+      (VideoLAN-SA-1004, CVE-2010-2937) (Closes: #592669, LP: #616510)
+    + Set urgency to medium
+  * 502_xulrunner_191.diff: Shorten, split into two parts, and refresh it.
+  * Drop 102_dejavu_font.diff and depend on ttf-freefont instead of ttf-
+    dejavu-core. ttf-freefont is very likely to be present on a Debian
+    box, because cups depends on it.
+  * Drop 501_decrease_alsa_buffer.diff. The pulseaudio output module has
+    a higher priority than the ALSA output plugin and should be used on
+    pulseaudio systems.
+
+  [ Reinhard Tartler ]
+  * add DM-Upload-Allowed field to debian/control
+
+ -- Reinhard Tartler <siretart at tauware.de>  Fri, 20 Aug 2010 06:59:17 +0200
+
+vlc (1.1.2-1) unstable; urgency=low
+
+  [ Christophe Mutricy ]
+  * New upstream release
+  * Also check for libxcb
+  * Move xcb_apps SD to vlc
+  * Re-enable the modplug module and require the fixed version
+    (Closes: #589890, #590787)
+  * Fix location of icons in vlc.menu (Closes: #590294)
+    thanks to Juhapekka Tolvanen
+  * Split the notify plugin to not depend on GTK+ (Closes: #590504)
+    thanks to Viktar Vauchkevich
+
+  [ Benjamin Drung ]
+  * Add proper Breaks and Replaces to vlc and vlc-plugin-notify.
+  * Bump Standards-Version to 3.9.1 (no changes required).
+
+ -- Benjamin Drung <bdrung at ubuntu.com>  Tue, 03 Aug 2010 01:38:17 +0200
+
+vlc (1.1.1-1) unstable; urgency=low
+
+  * New upstream release
+    + Remove patches merged upstream
+    + Add new symbols in libvlc5
+  * Explicit the split of vlc-plugin-zvbi in debian/changelog (Closes:
+    #588468)
+  * Disable modplug as libmodplug in sid is buggy (see #588465)
+  * Add comment about merging in README.source
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Thu, 22 Jul 2010 00:36:00 +0200
+
+vlc (1.1.0-4) unstable; urgency=low
+
+  * also move udev to the list of linux specific features
+  * alphabetize configure switches
+  * fix kfreebsd ftbfs in access file module (Closes: #588655)
+  * forcefully disable alsa on kFreeBSD
+
+ -- Reinhard Tartler <siretart at tauware.de>  Sat, 10 Jul 2010 19:39:57 -0400
+
+vlc (1.1.0-3) unstable; urgency=low
+
+  * really enable dc1394 only for Linux, Closes: #588410
+
+ -- Reinhard Tartler <siretart at tauware.de>  Fri, 09 Jul 2010 15:18:08 -0400
+
+vlc (1.1.0-2) unstable; urgency=low
+
+  * libdc1394 is linux specific.
+  * Fix FTBFS on arm with patch cherry-picked from upstream
+  * Set policy to 3.9.0 (no change needed)
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 07 Jul 2010 22:52:17 +0100
+
+vlc (1.1.0-1) unstable; urgency=low
+
+  [ Christophe Mutricy ]
+  * New upstream version 1.1.0 (Closes: #586760, LP: #597108)
+    * Fixes many bugs (Closes: #572151, #578917, #526088, #572914, #503377;
+      LP: #206152, #261001, #281478, #282215, #282966, #283379, #283855,
+      #285681, #287263, #328064, #328861, #346631, #356006, #356908, #357595,
+      #358461, #362793, #368599, #375854, #380077, #383443, #403135, #403657,
+      #403802, #414069, #415396, #416294, #419915, #422797, #425975, #427247,
+      #435225, #439271, #442038, #444795, #453928, #459515, #461443, #465687,
+      #466418, #476478, #482440, #491151, #491601, #514915, #517329, #517496,
+      #537627, #539406, #542293, #549029, #549902, #550468, #550485, #550599,
+      #551482, #553503, #554277, #556440, #560167, #564964, #566347, #568750,
+      #570666, #582785, #584009, #586692, #587528)
+    * SONAME changes
+    * Update symbols files
+    * Refresh patches and remove the ones merged upstream
+  * rules:
+    * Disable projectm and sqlite
+    * Upstream Makefile install icons at the good place, simplify debian/rules
+    * Specify where to install solids files
+    * Install the optim only if present
+    * Make sure we have useful build log
+  * *.install: reflect new modules path and add new files
+  * Add a trigger to generate the modules' cache as root.
+  * Update the doc which get installed
+  * control:
+    * Prefer a recent libdvbpsi
+    * add lua5.1 to have luac
+    * Add more build-dep: xcb*, dirac, dc1394 
+  * Patch to allow compilation with xul 1.9.1
+  * Remove unneeded -V for dh_makeshlibs
+  * Use configure option instead of patching
+  * Use dh_bugfiles and update the bug control file
+  * Don't advertise deprecated package in vlc's manpage
+  * Add some news about lua and zvbi
+  * Move the luahttp's .hosts to /etc/vlc
+
+  [ Benjamin Drung ]
+  * Switch to dpkg-source 3.0 (quilt) format.
+  * Disable portaudio module.
+  * Update symbols files.
+  * Cleanup clean rule and other parts of debian/rules.
+  * Remove default values from git-buildpackage config.
+  * Change installation of man pages.
+  * Remove unused ${shlibs:Depends}.
+  * Sort Build-Depends and Depends.
+  * Remove unused libhal-dev from Build-Depends (Closes: #580407).
+  * Remove unused --enable-release configure flag.
+  * Remove unused Build-Depends libid3tag0-dev, libsysfs-dev, and libxv-dev.
+  * Provide VBI teletext plugin (Closes: #563873) - thanks to László
+    Benedek <benedekl at gmail.com> for the patch.
+  * Split the VBI teletext module to its own package vlc-plugin-zvbi.
+  * Enable atmo, fluidsynth (separate package), libproxy (Closes: #532110),
+    kate (Closes: #563464), and mtp plugin.
+  * Comment disabled features.
+  * Explicitly enable or disable features.
+  * Vcs-Browser link to summary page.
+  * Convert patch header to DEP-3 and add DEP-3 to 502_xulrunner_191.diff.
+  * Add myself to Uploaders.
+  * Drop --sourcedir=debian/tmp from dh_install.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Thu, 24 Jun 2010 22:01:26 +0100
+
+vlc (1.0.6-1) unstable; urgency=low
+
+  * New upstream version 1.0.6
+    + VideoLAN-SA-1003
+    + Closes: #578799
+    + LP: #408719, #464715, #465560, #502637, #525278, #542943, #568859
+  * RTMP access module has been removed (vlc-nox.install, NEWS.Debian)
+  * Remove patches merged upstream
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Fri, 23 Apr 2010 11:49:18 +0200
+
+vlc (1.0.5-2) unstable; urgency=medium
+
+  [ Christophe Mutricy ]
+  * Install reportbug files also in vlc-data (LP: #472893)
+  * Fix symlinks
+  * vlc-data Replaces very old vlc as well as vlc-nox (Closes: #570749)
+  * Set urgency to medium as we fix RC bug
+  * Fix crash on malformed rtmp stream. (Closes: #569151)
+  * Fix crash in FTP url handling (LP: #465560)
+
+  [ Benjamin Drung ]
+  * Install icons in all available sizes (LP: #521744).
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Tue, 02 Mar 2010 00:30:56 +0100
+
+vlc (1.0.5-1) unstable; urgency=low
+
+  * New upstream version 1.0.5
+    + Closes: #556666, #565044
+
+  [ Reinhard Tartler ]
+  * Remove excessive replaces relationship
+  * Update for menu subpolicy, Closes: #564218
+
+  [ Christophe Mutricy ]
+  * NEWS.Debian: Use version present in Changelog
+  * Add comments to overrides file
+  * Add misc:Depends to vlc-data's Depends
+  * Refresh patches
+
+  [ Benjamin Drung ]
+  * Formatting improvements; thanks to Gerfried Fuchs for the patch
+    (Closes: #566384).
+  * Bump Standards-Version to 3.8.4, no changes required.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sat, 13 Feb 2010 15:52:30 +0000
+
+vlc (1.0.4-2) unstable; urgency=low
+
+  * Report libavutil50 presence the correct way
+  * Move back hotkeys to vlc-nox (Closes: #563477)
+  * Fix Replaces/Conflicts version so that upgrade work (Closes:
+    #563476, #563483)
+  * Add patch taken from upstream to fix jack input with jack2 (Closes:
+    #532339) - thanks to Adrian Knoth
+  * Disable access_dv on non-Linux archs
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Tue, 05 Jan 2010 23:31:56 +0100
+
+vlc (1.0.4-1) unstable; urgency=low
+
+  * New upstream release
+    + According to upstream, no longer overlaps kde and xfce panels in
+      fullscreen mode, Closes: #562601, LP: #453173
+
+  [ Christophe Mutricy ]
+  * libavutil50 seems to be troublesome. Add it to bugs/control
+  * Add a vlc-plugin-svg package (Closes: #560009)
+  * Switch to xulrunner-dev (Closes: #555915)
+  * Activate the global hotkey module (Closes: #548916)
+  * Mention other maintainers and that the binaries are GPL v3 as we
+    link with LGPL v3 libraries (LP: #489093)
+  * Build-depend on a recent enough live555 to avoid comma vs. decimal
+    point problem (Closes: #539946)
+
+  [ Benjamin Drung ]
+  * Recommend vlc-plugin-pulse for vlc, so that pulse can be used as
+    default output.
+
+  [ Whoopie ]
+  * Enable CDDB in the CDDA module (LP: #439131)
+  * Enable DV support (LP: #392115)
+
+  [ Benjamin Drung ]
+  * Fix typos, that are reported by lintian.
+  * Sort confflags in debian/rules
+  * Split normal configure flags from feature configure flags
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 30 Dec 2009 12:56:49 +0100
+
+vlc (1.0.3-1) unstable; urgency=low
+
+  * New upstream release
+
+  [ Reinhard Tartler ]
+  * Decrease alsa buffer size. That improves the behaviour of the alsa output
+    module on pulseaudio system. But note that vlc-plugin-pulse provides a
+    native pulseaudio output module (Closes: #472811, LP: #243152)
+
+  [ Christophe Mutricy ]
+  * No longer need to build an extra libvlccore without altivec
+  * Add the upnp access module (LP: #172938)
+  * Activate the new udev SD module on linux archs
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Thu, 05 Nov 2009 12:39:35 +0100
+
+vlc (1.0.2-1) unstable; urgency=high
+
+  * New upstream release
+    + Fix some stack overflows in MP4, ASF and AVI demuxers
+      (VideoLAN-SA-0902, CVE pending)(urgency=high)
+    + Closes: #540145, #542108
+  * Fix kfreebsd FTBFS and simplify (Closes: #545863) 
+    Thanks to Petr Salinger
+  * Fix Hurd install
+  * Update libvlccore symbol file
+  * Remove libass API patch
+  * Remove uneeded build-deps
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sun, 20 Sep 2009 01:08:41 +0200
+
+vlc (1.0.1-2) unstable; urgency=low
+
+  * Fix typo in debian/changelog
+  * Allow building against libass 0.9.7
+  * Don't try to install v4l2 modules on kfreebsd
+  * Set policy to 3.8.3 (no change needed)
+  * No need of qt4-dev-tools
+  * Add a README.source about quilt
+  * Disable some modules (kate, mtp, fluidsynth)
+  * Don't distribute the *.install-kfreebsd* files as they are generated 
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sun, 06 Sep 2009 19:07:24 +0200
+
+vlc (1.0.1-1) unstable; urgency=low
+
+  * New upstream bugfix version
+    + Fix integer underflow in Real RTSP (DZC-2009-001, CVE pending)
+    + Fix crashes in xspf files handler (LP: #365638)
+
+  [ Reinhard Tartler ]
+  * Add versioned build dependency on libschroedinger-dev
+
+  [ Christophe Mutricy ]
+  * Really build altivec-free libvlccore (Closes: #523035)
+  * Depends on libdvbpsi5-dev and protect against future renaming of 
+    libdvbpsi development package
+  * Remove patches applied upstream
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 29 Jul 2009 00:21:39 +0200
+
+vlc (1.0.0-1) unstable; urgency=low
+
+  * New Upstream Release
+    + Closes: #536081, LP: #396548
+    + Refresh patches
+  * no longer closes when pausing from the notification area, LP: #371515
+  * fix encoding bug when opening subtitles with non-latin characters,
+    LP: #394449
+  * Don't install the alsa and OSS access module on kfreeBSD (Closes:
+    #535101) - thanks to Javier Mendez Gomez
+  * Force at least libvlc 1.0.0 becasue of tha soname change of
+    libvlccore
+  * Delete a symbols who was present by mistake.
+  * No need for dh_desktop. It's a no-op
+  * New standard version. No change needed
+  * Fix make distclean. New patch taken from upstream
+  * Upstream make distcheck has been fixed. No need to save Changelog
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Thu, 09 Jul 2009 13:04:20 +0000
+
+vlc (1.0.0~rc2-1) experimental; urgency=low
+
+  * New Upstream Release Candidate
+    + Closes: #527010, #491441, #508618, #522824
+  * Delete patches which were picked from upstream
+  * Refresh patches
+  * Remove vlc-plugin-esd and vlc-plugin-arts as they have been removed
+    by upstream
+  * SONAME change for libvlccore
+  * Add new symbols for libvlc2
+  * Fix static libs compile
+  * Use vlc-wrapper manpage from upstream
+  * vlc.install: add drawable and screen was renamed x11_screen
+  * vlc-nox.install: Add and remove modules added/removed upstream
+  * Point out in NEWS the modules renamed or splited
+  * Add links to upstream NEWS and co in vlc-nox
+  * Version the depedency of libvlcore2 on vlc-data
+  * Remove unnecessary "Section:" in debian/control
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 03 Jun 2009 17:55:10 +0200
+
+vlc (0.9.9a-3) unstable; urgency=medium
+
+  * Correct typo in 0.9.9a-2 changelog entry
+  * Disable more optimization with DEB_BUILD_OPTIONS=noopt
+  * Cache the configure test results as we're running configure several
+    times
+  * Fix building as root
+  * Fix the clean target
+  * Remove unexistant config options
+  * Better check commad line
+  * Use all the procs on i386 and amd64
+  * Build a version of libvlccore without altivec (Closes: #523035)
+  * Fix typo (thanks to Salvatore Bonaccorso)(Closes: #528044)
+  * Reword the command line to get full logs in bug/presubj (Closes: #527012)
+  * Remove duplicate "extended Settings" entry in context menu
+   (Closes: #526603) - thanks to Matt Kraai
+  * Disable the logging facility in the javascript of moz plugin
+    This was a privacy hole. (urgency=medium)(Closes: #529633)
+  * Patch to support libmpc new API (Closes: #476375) - thanks to Yavor
+    Doganov
+  * Disable-maintener mode
+  * Make sure unpatch is last in the clean target
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sat, 06 Jun 2009 16:56:16 +0200
+
+vlc (0.9.9a-2) unstable; urgency=medium
+
+  * Security fix
+  * The default /usr/share/http/{old}/.hosts was wrong in VLC 0.9.8 and 0.9.9.
+    World access of the http interface was possible when activated in
+    contradiction of what is said in Changelog.Debian and NEWS.Debian.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Tue, 07 Apr 2009 23:06:48 +0200
+
+vlc (0.9.9a-1) unstable; urgency=low
+
+  * New upstream version 0.9.9a
+   + Closes: #520149, #522170, #522185, #522554
+   + Update symbol files
+  * Fix some typo in bug/presubj
+  * Remove some Replaces/Conflicts against version not in etch
+  * Move the caca module to vlc-nox
+    + Re-add some Replaces/Conflicts
+    + Closes: #522040
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Fri, 03 Apr 2009 00:12:49 +0200
+
+vlc (0.9.8a-3) unstable; urgency=low
+
+  [ Reinhard Tartler ]
+  * fix typo in '--enable-maintainer-mode' (Closes: #517155)
+
+  [ Christophe Mutricy ]
+  * Fix build on non-Linux arch
+  * Fix cross-compilation
+  * VLC is GPV v2 or later. So point to v2 of the GPL
+  * We can use debhelper v7 without trouble
+  * Add lintian overrides.
+  * Set policy to 3.8.1
+  * debian/patches/*
+    + Prune doc/fortunes.txt from personnal attack (Closes: #401560,
+      #518300)
+    + Delete unused patches
+    + Add comments to the patches
+  * Move to the video and debug sections  
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sun, 15 Mar 2009 16:50:18 +0000
+
+vlc (0.9.8a-2) unstable; urgency=low
+
+  * Upload to unstable
+  * Rebuild against new libraries (Closes: #516316, #516731)
+  * Move packaging to Git
+    + Add a conf file for git-buildpackage
+    + Reflect change to git in Vcs fields
+    + Ignore file generated by dpkg-buildpackage
+  * Disable the DV access module until it's ported to the new API
+  * Move http/.hosts to /etc (Closes: #501791)
+  * Improve some short descriptions
+  * Depends on debhelper >7
+  * Fix for 2 builds in a row
+  * Add a note in NEWS about running as root and vlc-wrapper (Closes: #507872)
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Tue, 24 Feb 2009 16:00:31 +0100
+
+vlc (0.9.8a-1) experimental; urgency=low
+
+  * New upstream release
+    + Fix integer overflow in Real demux (VideoLAN SA-2008-11, CVE-2008-5276)
+  * Enable RealRTSP access module
+  * Depends on libv4l-dev to add support of some webcam 
+  * Don't rebootstrap. The packages causing troubles previously have been fixed
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 03 Dec 2008 20:20:52 +0100
+
+vlc (0.9.6-1) experimental; urgency=low
+
+  [ Reinhard Tartler ]
+  * Build against libass. Closes: #499063, LP: #210354, #199870
+  * Explicitly build against libdca in debian/rules
+  * Tighten build depends on a libass-dev version that ships without .la file
+
+  [ Christophe Mutricy ]
+  * New bugfix upstream releases
+    + Remove 402_tivo_overflow.diff
+    + Fix buffer overflow in CUE demuxer (Closes: #504639)
+    + Fix buffer overflow in Realtext decoder
+  * Honor DEB_BUILD_OPTIONS 
+  * Rebootstrap in order to avoid problem with .la
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sat, 08 Nov 2008 03:14:29 +0100
+
+vlc (0.9.4-2) experimental; urgency=low
+
+  * Fix buffer overflow in Tivo demuxer
+    + Closes: #502726, VideoLAN SA-0809
+    + 402_tivo_overflow.diff taken from upstream
+  * Better xinerama fullscreen behaviour
+    + 401_detect_xinerama_fullscreen.diff taken from upstream
+  * Builddepends on libcursesw5-dev rather than libcurses5-dev 
+    for proper wide char handling 
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Mon, 20 Oct 2008 23:23:46 +0200
+
+vlc (0.9.4-1) experimental; urgency=low
+
+  * New upstream bugfix version
+  * rules: Pass the debian version in configure.ac so that the cache 
+    is invalidated between binary version
+  * control: Don't forget commas in builddep list
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Tue, 07 Oct 2008 00:17:30 +0200
+
+vlc (0.9.3-1) experimental; urgency=low
+
+  [ Christophe Mutricy ]
+  * New upstream release
+  * Build-depends on libdca-dev
+  * vlc-nox.install
+    + Be more general for the memcopy modules.
+      Fix a FTBFS on non-intel arch (Closes: #499860). 
+  * Sort builddep list 
+
+  [ Reinhard Tartler ]
+  * remove spurious conflicts on libvlc2. LP: #274614
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Fri, 26 Sep 2008 23:49:48 +0200
+
+vlc (0.9.2-1) experimental; urgency=low
+
+  [ Christophe Mutricy ]
+  * New upstream release
+    + Soname changed
+    + Bugs fixed upstream: Closes: #487646,  #298150, #325069, #392292, 
+      #458004, #470903, #458004, #423121
+    + new upstream fixes various crasher bugs reported in ubuntu:
+      LP: #189575, #113927, #103741, #111615, #107899, #112076, #198916, 221428,
+          #91679, #96978, #123589, #133528, #231621, #259025
+    + plays files with '+' in its name, LP: #239431, #217305
+    + New packages: libvlccore0, libvlccore-dev, vlc-plugin-pulse
+     (Closes: #471069)
+    + Build-depends on libswsale-dev, libshout3-dev, libxpm-dev,
+      zlib1g-dev, liblua5.1-0-dev, libschroedinger-dev, libtag1-dev,
+      libqt4-dev, libqt4-dev-tools and pkg-config. (Closes: #461324)
+    + time display no longer incomplete, LP: #193445
+    + fixed volume bar behavior, LP: #250041
+    + shout support closes LP: #127594, #84098, 
+    + Install new modules:
+      - vlc-nox: alphamask, blendbench, bluescreen, canvas, cc, cdg, chain,
+        colorthres, croppadd, dynamicoverlay, erase, faad, gaussianblur, grain,
+        inhibit, lua, memcpy*, mmap, osd_parser, puzzle, remoteosd, rtmp, 
+        schroedinger, sharpen, stats, subusf, t140, telepathy, v4l2, vmem
+      - vlc: qt4
+      - vlc-plugin-jack: access_jack
+    + Distribute the .pc for libvlc and vlc-plugin (Closes: #289507)
+    + Remove wx interface and glide plugin as they've been dropped by upstream
+      LP: #205325, #88487, #90603, #150380
+    + The Python and java bindings are no longer part of the upstream tarballs 
+      (Closes: #469011)
+    + Temporarly disable libdca module until a pkg with the new 
+      API get in unstable
+    + Delete or refresh patches
+    + New patches:
+        - 052_as-needed taken from bug #347650 to teach libtool about 
+          -Wl,--as-needed
+  * Install the skins DTD and the default skins it's only 113kB
+  * Improve watch file
+  * Add a vlc-data package for /usr/share  (13 MB)
+  * Add a vlc-dbg package (Closes: #491564)
+  * Sort vlc.install and vlc-nox.install
+
+  [ Mohammed Adnène Trojette ]
+  * Add myself to Uploaders.
+  * debian/control:
+    + Add proper conflicts/replaces to vlc-data with mozilla-plugin-vlc.
+    + Add proper conflicts/replaces to vlc with vlc-nox.
+
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 17 Sep 2008 00:49:48 +0200
+
+vlc (0.8.6.i-2) experimental; urgency=high
+
+  [ Loic Minier ]
+  * Fix changelog entries for 0.8.6.h-2 and 0.8.6.h-3.
+  * Bump up Standards-Version to 3.8.0.
+
+  [ Christophe Mutricy ]
+  * Security: Fix integer overflow in mms module (CVE-2008-3794)
+    (Closes: #496265)(407-mms-overflow.diff taken from upstream)
+
+  [ Sam Hocevar ]
+  * debian/patches/300_manpage_syntax.diff: fix vlc-config.1 syntax.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 26 Aug 2008 23:25:13 +0000
+
+vlc (0.8.6.i-1) experimental; urgency=low
+
+  * New upstream release.
+    - Refresh patch 010_iceape and change it to only patch the name of the .pc
+      files, keep using FIREFOX_CFLAGS and _LIBS etc. as to allow us to only
+      run autoconf, not automake.
+    - Drop patch 401-CVE-2008-2430, merged upstream.
+    - Update and rename patch 050_bootstrap to 900_autoconf.
+
+ -- Loic Minier <lool at dooz.org>  Fri, 22 Aug 2008 19:13:30 +0200
+vlc (0.8.6.h-5) unstable; urgency=high
+
+  * Acknowledge NMU by Nico Golde. Thanks.
+  * Fix buffer overflow in CUE demuxer (Closes: #504639) 
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Wed, 05 Nov 2008 22:02:06 +0100
+
+vlc (0.8.6.h-4.1) unstable; urgency=high
+
+  * Non-maintainer upload by the Security Team.
+  * Fix integer overflows that could possibly lead to arbitrary
+    code execution (CVE-2008-4686.diff; Closes: #503118).
+
+ -- Nico Golde <nion at debian.org>  Mon, 03 Nov 2008 14:41:58 +0100
+
+vlc (0.8.6.h-4) unstable; urgency=high
+
+  * Security: Fix integer overflow in mms module
+    (Closes: #496265)(407-mms-overflow.diff taken from upstream)
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Mon, 25 Aug 2008 01:07:27 +0100
+
+vlc (0.8.6.h-3) unstable; urgency=low
+
+  * Minor cleanups.
+  * Use DEB_HOST_ARCH instead of DEB_BUILD_ARCH in rules.
+  * Use objdump -x instead of ldd to check for links on libX11 as ldd might
+    resolve libvlc to the system's version if the system has libvlc installed;
+    closes: #495730.
+
+ -- Loic Minier <lool at dooz.org>  Fri, 22 Aug 2008 19:46:35 +0200
+
+vlc (0.8.6.h-2) unstable; urgency=high
+
+  * Fix integer overflow in TTA (CVE-2008-3732) (405-CVE-2008-3732.diff)
+  * Fix crashes in Live555 (406-live555-crash.diff)
+  * Switch to libdc1394-22-dev (Closes: #484695)
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Thu, 21 Aug 2008 20:19:39 +0100
+
+vlc (0.8.6.h-1) unstable; urgency=high
+
+  [ Christophe Mutricy ]
+  * Acknowledge NMU by Nico Golde. Thanks.
+  * Acknowledge NMU by Mike Hommey. Thanks.
+  * New security upstrem release
+    - Fix buffer overflow (CVE-2008-1881)
+    - Fix out of bound array access (CVE-2008-1769)
+    - Fix various integer overflow in MP4 demuxer, Cinepak, RTSP
+      (CVE-2008-1489, CVE-2008-1768)
+    - Remove 105_min_mkv.patch, 400-CVE-2008-1489.diff and
+      401-CVE-2008-0073.diff, 402-CVE-2008-1881, 403-CVE-2008-1768.diff
+      and 404-CVE-2008-1881 integrated upstream
+  * Remove old transitional packages: vlc-plugin-alsa and wxvlc
+    (Closes: #477543, #477545)
+  * Add some magic for reportbug to ask people to remove their plugin cache
+    and get the info for vlc-nox and libvlc0 also.
+
+  [ Reinhard Tartler ]
+  * added a watch file
+  * new upstream release, refreshing patches
+
+  [ Christophe Mutricy ]
+  * Fix buffer overflow in Wav demux.(CVE-2008-2430)(Closes: #489004)
+    (Patch taken from upstream: 401-CVE-2008-2430.diff)
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sat, 05 Jul 2008 23:45:15 +0100
+
+vlc (0.8.6.e-2.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: Build depend on iceape-dev >= 1.1.9-4 instead of
+    libxul-dev (Closes: #480812).
+  * debian/patches/010_iceape.diff: configure.ac changes to allow to build
+    against iceape.
+  * debian/patches/050_bootstrap.diff: Corresponding configure changes.
+  * debian/patches/series: Added 010_iceape.diff.
+
+ -- Mike Hommey <glandium at debian.org>  Fri, 23 May 2008 21:11:07 +0200
+
+vlc (0.8.6.e-2.1) unstable; urgency=high
+
+  * Non-maintainer upload by the Security Team.
+  * This update addresses the following security issues:
+    - CVE-2008-1769: out-of-bounds array access and memory corruption
+      via a crafted cinepak file (Closes: #478140).
+    - CVE-2008-1768: multiple integer overflow triggering buffer overflows
+      in the mp4 and real demuxer and the cinepak codec (Closes: #478140).
+    - CVE-2008-1881: stack-based buffer overflow in subtitle parsing leading
+      to arbitrary code execution via crafted subtitle file (Closes: #477805).
+
+ -- Nico Golde <nion at debian.org>  Sun, 27 Apr 2008 16:17:49 +0200
+
+vlc (0.8.6.e-2) unstable; urgency=high
+
+  [ Christophe Mutricy ]
+  * Acknowledge NMU by Nico Golde. Thanks
+  * New patch taken from upstream to fix an arbitrary code execution.
+    CVE-2008-0073 (Closes: #473057)
+  * New patch to fix FTBS in MKV module
+
+  [ Loic Minier ]
+  * Mention CVE id in 0.8.6.e-1.1.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Sat, 29 Mar 2008 15:04:28 +0000
+
+vlc (0.8.6.e-1.1) unstable; urgency=high
+
+  * Non-maintainer upload by the Security Team.
+  * Fix Integer overflow in MP4_ReadBox_rdrf function
+    that triggers a heap-based buffer overflow via a
+    large atom length value (Closes: #472635); CVE-2008-1489.
+
+ -- Nico Golde <nion at debian.org>  Wed, 26 Mar 2008 13:21:44 +0100
+
+vlc (0.8.6.e-1) unstable; urgency=high
+
+  [ Christophe Mutricy ]
+  * New security upstream release
+    - CORE-2008-0130, VideoLAN-SA-0802, CVE-2008-0986: Arbitrary memory
+      overwrite in the MP4 demuxer (Closes: #467652)
+    - Others security fixes already included in the Debian package
+    - Xshm detection fix (Closes: #404361)
+    - Alsa 5.1 fixes
+    - DTS to S/PDIF fixes
+  * patches/
+    - delete the uneeded sec-* patches
+    - delete 100_no_wx_update.diff as the update "feature" has been removed
+      upstream
+
+  [ Loic Minier ]
+  * Urgency high for security bugfix.
+
+ -- Christophe Mutricy <xtophe at videolan.org>  Mon, 25 Feb 2008 23:35:24 +0000
+
+vlc (0.8.6.c-6) unstable; urgency=high
+
+  [ Nico Golde ]
+  * This update addresses the following security issues (Closes: #461544).
+    - CVE-2008-0295: Heap-based buffer overflow in real_sdpplin.c
+      which could lead to user-assisted arbitrary code execution
+      via crafted SDP data.
+    - CVE-2008-0296: Heap-based buffer overflow in libaccess_realrtsp plugin
+      which might lead to arbitrary code execution via a crafted RTSP server.
+
+  [ Loic Minier ]
+  * Merge above changes by Nico Golde.
+
+ -- Loic Minier <lool at dooz.org>  Mon, 21 Jan 2008 16:16:51 +0100
+
+vlc (0.8.6.c-5) unstable; urgency=low
+
+  [ Christophe Mutricy ]
+  * New vlc-plugin-jack pkg with jack audio_output module
+      (closes: #402252, #444992)
+  * Make all the symlink for /usr/share/${pkg} point to /usr/share/doc/vlc-nox
+    as the plugins depends on vlc-nox and not vlc
+  * debian/control: dpkg-shlibdeps gives the correct depends for
+    vlc-plugin-glide. So drop the hardcoded depends on libglide2
+  * debian/rules: dpkg-shlibdeps now behaves better with libraries without
+    versionned symbol file.
+
+  [ Sam Hocevar ]
+  * debian/control:
+    + Dropped the libcdio-dev versioned build-dep to ease backports.
+
+  [ Loic Minier ]
+  * Ack NMU by Nico Golde; thanks!
+  * Wrap more deps.
+  * Also build vlc-plugin-svgalib package on amd64 as well; build-dep on
+    libsvga1-dev on amd64 too; --enable-svgalib on amd64.
+  * Drop debian/*.dirs.
+  * Only pass --host to configure if DEB_BUILD_GNU_TYPE and DEB_HOST_GNU_TYPE
+    differ.
+  * Pass --quiltrc /dev/null to quilt and use $(QUILT) to invoke quilt.
+  * Bump up Debhelper compatibility level to 6; drop dpkg-dev build-dep.
+  * Add /svn to Vcs-Svn.
+  * Don't run ./vlc as a test if nocheck is given.
+  * Cleanup rules.
+  * Drop vlc-plugin-alsa and wxvlc /u/s/d symlinks as these are dummy packages
+    anyway.
+  * Update menu file.
+
+ -- Loic Minier <lool at dooz.org>  Fri, 11 Jan 2008 17:32:36 +0100
+
+vlc (0.8.6.c-4.1) unstable; urgency=high
+
+  * Non-maintainer upload by security team.
+  * This update addresses the following security issues
+    (CVE ids pending; Closes: #458318):
+    - Fix format string issue in internal webserver that could lead to
+      to arbitrary code execution (sec-httpd_formatstring.diff).
+    - Disable m3u EXTVLCOPT parsing if no command line option is specified
+      (--m3u-extvlcopt) to prevent browser plugins to control stream output
+      and thus overwriting arbitrary files of the user running vlc
+      (sec-vlcopt_support.diff).
+    - Fix stack-based buffer overflow in subtitle parsing
+      (sec-subtitle_buffer_overflow.diff).
+    - Fix NULL pointer dereference in the rtsp/rtp module by checking return
+      of the httpd_MsgGet function (sec-rtsp_remote_dos.diff).
+
+ -- Nico Golde <nion at debian.org>  Fri, 11 Jan 2008 15:05:10 +0100
+
+vlc (0.8.6.c-4) unstable; urgency=high
+
+  [ Loic Minier ]
+  * Wrap build-deps and deps.
+  * Only suggest videolan-doc; closes: #451914.
+
+  [ Christophe Mutricy ]
+  * Use Vcs- instead of Xs-Vcs-
+  * Add Homepage field to control
+  * Use --ignore-missing-info with dpkg-shlibdeps as glide doesn't provide a
+    versionned .shlibs
+
+  [ Sam Hocevar ]
+  * debian/control:
+    + Build-depend on a newer libcdio-dev to transition to the newer binary
+      packages (Closes: #456390, #456403, #453823).
+    + Depend on ttf-dejavu-core instead of ttf-dejavu (Closes: #445580).
+    + Set policy to 3.7.3.
+  * debian/rules:
+    + Don’t ignore make distclean errors.
+    + Call dh_desktop to register desktop files.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 15 Dec 2007 12:33:48 +0000
+
+vlc (0.8.6.c-3) unstable; urgency=high
+
+  * debian/control:
+    + Removed now useless linux-libc-dev build-dependency (Closes: #430710),
+      thanks to Steve Langasek.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu, 05 Jul 2007 10:13:42 +0200
+
+vlc (0.8.6.c-2) unstable; urgency=high
+
+  [ Loic Minier ]
+  * Merge the never uploaded 0.8.6.a.debian-7 changelog entry into 0.8.6.c-1.
+
+  [ Christophe Mutricy ]
+  * Build-depends on linux-libc-dev  rather than linux-kernel-headers
+    (Closes: #430710 )
+
+  [ Sam Hocevar ]
+  * debian/control:
+    + Build-depend on newer libavcodec libraries.
+    + Build-depend on newer libflac-dev.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 04 Jul 2007 22:31:32 +0200
+
+vlc (0.8.6.c-1) unstable; urgency=high
+
+  [ Loic Minier ]
+  * New patch, 107_gcc-4.3, fixes missing include causing a build failure with
+    GCC 4.3; thanks Martin Michlmayr; closes: #417750.
+
+  [ Christophe Mutricy ]
+  * No longer build the x264 module as libx264 has been removed from Sid
+    (Closes: #424649, #427283).
+  * New patch, 108_flac-1.1.3 taken from upstream to fix building with
+    libflac8 (Closes: #426673).
+  * Rebuild against new libavcodec and libavformat (Closes: #427573).
+
+  [ Fathi Boudra, Christophe Mutricy ]
+  * New upstream release (Closes: #424915):
+    + multiple format string vulnerabilities (VideoLAN-SA-0207).
+      (Closes: #429726)
+    + media player unspecified Denial Of Service vulnerability (CVE-2007-0256).
+      (Closes: #407290)
+    + missing includes to fix FTBFS with GCC 4.3.0. (Closes: #417750)
+    + fullscreen opens a normal window instead of going fullscreen on amd64.
+      (Closes: #405035)
+    + fix building with libflac8. (Closes: #426673)
+    + The following patches are no longer necessary:
+      105_audio_format_crash.diff
+      106_xshm_check.diff
+      107_gcc-4.3.diff
+      108_flac-1.1.3.diff
+
+  [ Sam Hocevar ]
+  * Install libtelx_plugin.so in vlc-nox package.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 26 Jun 2007 01:41:02 +0200
+
+vlc (0.8.6.a.debian-6) unstable; urgency=low
+
+  * Rebuilt package against packages that are in unstable (Closes: #415446).
+
+  * debian/control:
+    + Use ${binary:Version} instead of ${Source-Version}.
+    + Build-depend on dpkg-dev (>= 1.13.19).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Mar 2007 14:50:43 +0100
+
+vlc (0.8.6.a.debian-5) unstable; urgency=low
+
+  * Refreshed and renamed all patches.
+
+  * debian/control:
+    + Set pkg-multimedia-maintainers as main maintainer.
+    + Fixed Vcs fields.
+  * debian/compat:
+    + Set compat to 5.
+  * debian/rules:
+    + Big cleanup.
+    + Distribute libvlc.a again.
+    + Switch to AM_MAINTAINER_MODE instead of touching all files.
+
+  * debian/patches/106_xshm_check.diff:
+    + New patch. Don't crash if XShmAttach fails, instead fall back to
+      normal X images (Closes: #404361).
+
+  * debian/patches/300_manpage_syntax.diff:
+    + New patch. Fix dvd:// syntax in manpage (Closes: #412372) and add
+      mention of the videolan-doc package.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 17 Mar 2007 19:46:52 +0100
+
+vlc (0.8.6.a.debian-4) unstable; urgency=low
+
+  * *sigh*, libfaad-dev build-depend was in fact missing.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 13 Mar 2007 10:39:04 +0100
+
+vlc (0.8.6.a.debian-3) unstable; urgency=low
+
+  * debian/control:
+    + Add XS-Vcs-Browser field.
+    + Build-depend on libx264-dev.
+    + Build-depend on libfaad-dev.
+  * debian/rules:
+    + Now that they're in unstable, no longer build our custom x264 and faad2.
+
+  * debian/patches/030_audio_format_crash.diff:
+    + Patch from upstream to fix multiple crashes with audio conversions.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 12 Mar 2007 16:41:06 +0100
+
+vlc (0.8.6.a.debian-2) unstable; urgency=high
+
+  * debian/patches/021_x264_powerpc.diff:
+    + Patch from upstream to fix FTBFS on PowerPC (Closes: #411438).
+  * debian/rules:
+    + Fix a kFreeBSD FTBFS, courtesy of Petr Salinger (Closes: #399713).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 21 Feb 2007 12:12:02 +0100
+
+vlc (0.8.6.a.debian-1) unstable; urgency=high
+
+  * New upstream bugfix release.
+  * Most of our patches are now in sync with upstream. Removed:
+    + 000_bootstrap.diff
+    + 000_ltmain.diff
+    + patch-badly-initialised-data-0.8.6debian-0.8.6a.diff
+    + patch-configure.ac-syntax-0.8.6debian-0.8.6a.diff
+    + patch-documentation-0.8.6debian-0.8.6a.diff
+    + patch-i422-yuy2-crash-0.8.6debian-0.8.6a.diff
+    + patch-integer-signedness-0.8.6debian-0.8.6a.diff
+    + patch-logo-filter-crash-0.8.6debian-0.8.6a.diff
+    + patch-memory-leaks-0.8.6debian-0.8.6a.diff
+    + patch-missing-locks-0.8.6debian-0.8.6a.diff
+    + patch-mjpeg-separator-0.8.6debian-0.8.6a.diff
+    + patch-mozilla-plugin-0.8.6debian-0.8.6a.diff
+    + patch-network-protocols-fixes-0.8.6debian-0.8.6a.diff
+    + patch-playlist-crash-0.8.6debian-0.8.6a.diff
+    + patch-po-0.8.6debian-0.8.6a.diff
+    + patch-private-libcaca-0.8.6debian-0.8.6a.diff
+    + patch-remove-debug-messages-0.8.6debian-0.8.6a.diff
+    + patch-sanitise-javascript-0.8.6debian-0.8.6a.diff
+    + patch-sanity-checks-0.8.6debian-0.8.6a.diff
+    + patch-sdl-image-priority-0.8.6debian-0.8.6a.diff
+    + patch-utf8-0.8.6debian-0.8.6a.diff
+    + patch-version-information-0.8.6debian-0.8.6a.diff
+    + MOAB-02-01-2007-CVE-2007-0017.patch
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu, 11 Jan 2007 18:17:41 +0100
+
+vlc (0.8.6-svn20061012.debian-2) unstable; urgency=high
+
+  * Maintainer upload.
+  * Acknowledge previous NMUs by Andreas Barth. Thanks.
+    (Closes: #405425, #400720, #403022).
+
+  * debian/control:
+    + Put back mozilla-plugin-vlc package.
+
+  * debian/rules:
+    + Build with mediacontrol bindings, needed for the Mozilla plugin.
+
+  * 020_kfreebsd.diff:
+    + New patch courtesy of Petr Salinger. Fix a GNU/kFreeBSD FTBFS
+      (Closes: #399713).
+
+  * patch-configure.ac-syntax-0.8.6debian-0.8.6a.diff:
+    + Fix "CFAGS" to "CFLAGS" in configure.ac.
+
+  * patch-documentation-0.8.6debian-0.8.6a.diff:
+    + Documentation, translation and error messages updates.
+
+  * patch-network-protocols-fixes-0.8.6debian-0.8.6a.diff:
+    + Various fixes for the IPv4, IPv6, SAP and HTTP protocols.
+
+  * patch-po-0.8.6debian-0.8.6a.diff:
+    + Translation updates.
+
+  * patch-version-information-0.8.6debian-0.8.6a.diff:
+    + Set version information to 0.8.6a, even if it's not really our real
+      version, to make it clear that the security issues were fixed.
+
+  * patch-mozilla-plugin-0.8.6debian-0.8.6a.diff:
+    + Proper fix for the Mozilla plugin (Closes: #400720, #403022).
+
+  * 000_bootstrap.diff:
+    + Rebootstrap tarball because of changes to configure.ac.
+
+  * patch-badly-initialised-data-0.8.6debian-0.8.6a.diff:
+    + Fix various badly initialised variables in the code.
+
+  * patch-i422-yuy2-crash-0.8.6debian-0.8.6a.diff:
+    + Fix a crash in the I422-YUY2 chroma conversion.
+
+  * patch-integer-signedness-0.8.6debian-0.8.6a.diff:
+    + Fix integer signedness issues in the variable code.
+
+  * patch-logo-filter-crash-0.8.6debian-0.8.6a.diff:
+    + Fix a crash in the logo filter.
+
+  * patch-memory-leaks-0.8.6debian-0.8.6a.diff:
+    + Fix various memory leaks.
+
+  * patch-missing-locks-0.8.6debian-0.8.6a.diff:
+    + Add missing mutex locks.
+
+  * patch-mjpeg-separator-0.8.6debian-0.8.6a.diff:
+    + Fix MJPEG format support.
+
+  * patch-playlist-crash-0.8.6debian-0.8.6a.diff:
+    + Fix a crash in the playlist code.
+
+  * patch-private-libcaca-0.8.6debian-0.8.6a.diff:
+    + Do not use private libcaca symbols.
+
+  * patch-remove-debug-messages-0.8.6debian-0.8.6a.diff:
+    + Disable debug messages and spurious messages to stderr.
+
+  * patch-sanitise-javascript-0.8.6debian-0.8.6a.diff:
+    + Fix the javascript string sanitising.
+
+  * patch-sanity-checks-0.8.6debian-0.8.6a.diff:
+    + Various sanity checks for untrusted data.
+
+  * patch-sdl-image-priority-0.8.6debian-0.8.6a.diff:
+    + Downgraded the sdl-image plugin priority.
+
+  * patch-utf8-0.8.6debian-0.8.6a.diff:
+    + Fix Unicode support in GUIs and file access.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon,  8 Jan 2007 09:43:07 +0100
+
+vlc (0.8.6-svn20061012.debian-1.2) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Fix format string vulnerability with patch
+    MOAB-02-01-2007-CVE-2007-0017.patch, CVE-2007-0017. Closes: #405425
+
+ -- Andreas Barth <aba at not.so.argh.org>  Sat,  6 Jan 2007 23:07:51 +0000
+
+vlc (0.8.6-svn20061012.debian-1.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * remove broken package mozilla-plugin-vlc. Closes: #400720, #403022
+
+ -- Andreas Barth <aba at not.so.argh.org>  Sat, 23 Dec 2006 19:17:40 +0000
+
+vlc (0.8.6-svn20061101.debian-1) UNRELEASED; urgency=high
+
+  * New upstream SVN snapshot.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed,  1 Nov 2006 10:50:17 +0100
+
+vlc (0.8.6-svn20061012.debian-1) unstable; urgency=low
+
+  * New upstream SVN snapshot.
+  * Upstream fixed the BadWindow request issue (Closes: #392207).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu, 12 Oct 2006 20:43:45 +0200
+
+vlc (0.8.6-svn20061008.debian-1) unstable; urgency=high
+
+  * New upstream SVN snapshot. Fixes a heap smashing bug.
+  * debian/control:
+    + Build-depend on libgtk2.0-dev to work around #388521 (Closes: #391739).
+    + Replace XS-X-Vcs-Svn with -XS-Vcs-Svn.
+
+  * debian/patches/020_notify.diff:
+    + Fix notify support. Thanks to Christophe Mutricy.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun,  8 Oct 2006 18:54:30 +0200
+
+vlc (0.8.6-svn20061001.debian-4) unstable; urgency=low
+
+  * Build-depend on libnotify and explicitly activate the libnotify plugin
+    (Closes: #391308).
+  * Re-enable DV support. libraw1394 is not waiting for us anyway.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri,  6 Oct 2006 10:24:26 +0200
+
+vlc (0.8.6-svn20061001.debian-2) unstable; urgency=high
+
+  * Temporarily disable DV support because the libraw1394 transition does
+    not look like it will happen soon.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed,  4 Oct 2006 14:00:16 +0200
+
+vlc (0.8.6-svn20061001.debian-1) unstable; urgency=low
+
+  * New upstream SVN snapshot.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun,  1 Oct 2006 17:57:57 +0200
+
+vlc (0.8.6-svn20060925.debian-1) unstable; urgency=low
+
+  [ Sam Hocevar ]
+  * New upstrean SVN snapshot.
+  * This release fixes issues with the French Freebox device (Closes: #388332).
+
+  * debian/control:
+    + Added Clément Stenac to the uploaders.
+
+  * 020_certificates_paths.diff:
+    + New patch from upstream that looks for SSL certificates in
+      /etc/ssl/certs/ca-certificates.crt (Closes: #365239).
+
+  [ Clément Stenac ]
+  * Add VCS information to control
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 25 Sep 2006 14:00:46 +0200
+
+vlc (0.8.6-svn20060918.debian-1) unstable; urgency=low
+
+  * New upstream SVN snapshot, with a slightly saner version number.
+  * debian/rules:
+    + Call dh_install with -si so that it does not try to install files that
+      are not for us (Closes: #387873).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 18 Sep 2006 12:38:26 +0200
+
+vlc (0.8.6-svn20060911.0.8.5-1-svn.debian-5) unstable; urgency=low
+
+  * debian/control:
+    + Added proper conflicts/replaces to the libvlc0 package because it
+      overwrites files from old vlc packages (Closes: #387844).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 17 Sep 2006 01:38:24 +0200
+
+vlc (0.8.6-svn20060911.0.8.5-1-svn.debian-4) unstable; urgency=low
+
+  * debian/control:
+    + Add libsdl-image1.2-dev to the build-dependencies.
+    + Shorten short descriptions and add “without X support” to the vlc-nox
+      short description.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 16 Sep 2006 20:08:53 +0200
+
+vlc (0.8.6-svn20060911.0.8.5-1-svn.debian-3) unstable; urgency=low
+
+  * debian/control:
+    + Distribute libvlc0 in a separate package.
+    + Created vlc-nox package that contains VLC and all its non-X related
+      plugins.
+  * debian/rules:
+    + Use dh_install.
+    + Bail out with an error if a plugin from vlc-nox got linked to libX11.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu, 14 Sep 2006 18:39:59 +0200
+
+vlc (0.8.6-svn20060911.0.8.5-1-svn.debian-2) unstable; urgency=low
+
+  * debian/patches/000_dup_builtins.diff:
+    + Fix a powerpc FTBFS due to duplicate libraries in link lines.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 11 Sep 2006 18:32:04 +0200
+
+vlc (0.8.6-svn20060911.0.8.5-1-svn.debian-1) unstable; urgency=low
+
+  * New upstream SVN snapshot, fixes an amd64 FTBFS.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 11 Sep 2006 13:56:19 +0200
+
+vlc (0.8.6-svn20060910.0.8.5-1-svn.debian-1) unstable; urgency=low
+
+  * New upstream SVN snapshot, from the forthcoming 0.8.5-1 branch.
+  * This branch's playlist window does not crash like the 0.8.6 does
+    (Closes: #375213, #385036, #384869).
+
+  * Upstream fixed implicit pointer functions (Closes: #385192).
+  * Upstream's x264 build system now uses config.guess instead of uname to
+    detect system and CPU types (Closes: #385535).
+  * Upstream removed debug messages from the ts plugin (Closes: #385008,
+    Closes: #385323).
+  * Aspect ration in mkv files was fixed (Closes: #385876).
+
+  * debian/control:
+    + Build-depend on libcaca-dev (>= 0.99.beta4-1) so that we no longer pull
+      useless build dependencies (Closes: #385536).
+    + Have VLC depend on ttf-dejavu again. It's used for subtitles and the
+      default skin.
+  * debian/copyright:
+    + Full copyright holders and license audit (Closes: #324978).
+  * debian/rules:
+    + No longer install old copyright files (Closes: #385200).
+    + Re-activated the speex module (Closes: #386204).
+    + Don't install TTF fonts, use the ones from ttf-dejavu instead.
+
+  * debian/patches/020_freetype_font.diff:
+    + Renamed this patch into 020_dejavu_font.diff and made it use dejavu
+      fonts.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 10 Sep 2006 19:02:17 +0200
+
+vlc (0.8.6-svn20060823.debian-3) unstable; urgency=low
+
+  * debian/control:
+    + Added missing build-dep on libdc1394-13-dev (Closes: #384568, #384582).
+    + Build-depend on a newer libcaca for better colour ASCII rendering.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 25 Aug 2006 11:19:00 +0200
+
+vlc (0.8.6-svn20060823.debian-2) unstable; urgency=low
+
+  * debian/control:
+    + Added missing build-dep on libraw1394-dev.
+  * debian/rules:
+    + Replaced --enable-livedotcom with --enable-live555.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 25 Aug 2006 09:37:47 +0200
+
+vlc (0.8.6-svn20060823.debian-1) unstable; urgency=low
+
+  * New upstream SVN snapshot.
+  * debian/rules:
+    + Distribute a shared version of libvlc.
+    + Activated the twolame encoder.
+  * debian/control:
+    + Build-depend on a newer libavcodec so as to get WMV3 decoding support.
+    + Cleaned up package dependencies a bit.
+
+  * debian/patches/000_ltmain.diff:
+    + Work around libtool not wanting to install our plugins.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu, 24 Aug 2006 18:06:12 +0200
+
+vlc (0.8.5.debian-2) unstable; urgency=low
+
+  * debian/rules:
+    + Fix generation of Arch: all transition packages.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed,  7 Jun 2006 14:46:22 +0200
+
+vlc (0.8.5.debian-1) unstable; urgency=low
+
+  * New upstream release (Closes: #364934).
+  * This release no longer disables audio input if the v4l video device does
+    not advertise an audio device (Closes: #316377).
+  * This release fixes PPC asm compilation issues in x264 (Closes: #366965).
+
+  * debian/control:
+    + Merged wxvlc and vlc-plugin-alsa into vlc to get rid of circular
+      dependencies (Closes: #365816).
+    + Set policy to 3.7.2.
+    + libxosd-dev is installable again; build-depend on it (Closes: #364937).
+
+  * debian/patches/030_x264_altivec.diff:
+  * debian/patches/030_x264_armvl.diff:
+    + Patches applied upstream. Removed.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 23 May 2006 16:15:56 +0200
+
+vlc (0.8.5-test3.debian-3) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on libdvdread-dev (>= 0.9.5) because libdvdread3-dev just
+      disappeared (Closes: #364681).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 25 Apr 2006 09:05:45 +0200
+
+vlc (0.8.5-test3.debian-2) unstable; urgency=low
+
+  * debian/control:
+    + Added missing libavc1394-dev build-dependency.
+
+  * debian/patches/030_x264_altivec.diff:
+    + Fixed illegal implicit casts of vector types.
+
+  * debian/patches/030_x264_armvl.diff:
+    + Added support for the armv4l CPU.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 24 Apr 2006 20:45:16 +0200
+
+vlc (0.8.5-test3.debian-1) unstable; urgency=low
+
+  * New upstream release.
+
+  * Upstream fixed many bugs:
+    + Fixed the CPU features used by the deinterlace plugin and no
+      longer crashes on non-SSE machines (Closes: #363153).
+    + Properly build on amd64 wrt PIC (Closes: #339372, #330146, #330154).
+    + Fixed the double pane in settings dialog issue (Closes: #343031).
+    + Help flags now adapt to the locale and help formatting was fixed
+      (Closes: #347278).
+    + HTTP streaming no longer fails (Closes: #352599).
+    + Memory leak fixed (Closes: #359655).
+    + x264 build system supports ppc64 and mips64 (Closes: #361452, #358233).
+    + OGG muxing was fixed (Closes: #364321).
+
+  * debian/control:
+    + Removed legacy dummy packages.
+    + Switched from dpatch to quilt.
+    + Removed now useless build-dependency on gcc-snapshot (Closes: #361729).
+    + Ditto for xlibs-static-pic (Closes: #364265).
+    + Build-depend on newer ffmpeg libraries so that we dynamically link
+      against them.
+    + Build-depend on newer Matroska libraries to fix .mkv support
+      (Closes: #348404).
+    + Build-depend on libxul-dev and xulrunner instead of mozilla-dev.
+    + Build-depend on newer live555 libraries.
+    + Depend on vlc-plugin-alsa.
+    + Removed the ttf-freefont dependency (Closes: #353459, #362071).
+
+  * debian/vlc.mime:
+    + Fixed broken templates (Closes: #354101).
+
+  * debian/patches/010_no-wx-updates.diff:
+    + Created from old dpatch. Disables broken "check for updates" button.
+
+  * debian/patches/010_osdmenu-paths.diff
+    + Created from old dpatch. Fixes file paths for OSD plugin.
+
+  * debian/patches/020_xulrunner.diff:
+    + Build using XULrunner (Closes: #364381).
+
+  * debian/patches/020_freetype_font:
+    + Do not hardcode the default font, let VLC find one itself.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 24 Apr 2006 18:10:10 +0200
+
+vlc (0.8.4.debian-2) unstable; urgency=low
+
+  * debian/rules:
+    + Enable zeroconf/bonjour support (Closes: #348085).
+    + Enable musepack decoding support.
+    + Enable VCD navigation support.
+  * debian/control:
+    + Build-depend on more recent versions of libavcodec to fix CVE-2005-4048.
+    + Build-depend on libhal-dev (>= 0.5.5.1-3) for the dbus transition.
+    + Build-depend on libavahi-client-dev.
+    + Build-depend on libmpcdec-dev.
+    + Build-depend on libsysfs-dev so that the MP4 module can get an iPod’s
+      version number.
+    + Build-depend on libvcdinfo-dev.
+  * debian/vlc.mime:
+    + Put flags after the command, as per mailcap(5) (Closes: #340434).
+
+  * src/libvlc.c configure.ac modules/services_discovery/hal.c:
+    + Backported HAL 0.5 patch from upstream, thanks to Clément Stenac and
+      Loïc Minier. As a result, we now build and install again on unstable
+      (Closes: #332927, #347598, #347847).
+  * extras/x264/configure:
+    + Support the armv5tel platform.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 22 Jan 2006 12:08:42 +0100
+
+vlc (0.8.4.debian-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 26 Nov 2005 19:55:09 +0100
+
+vlc (0.8.4-test2-2) unstable; urgency=low
+
+  * extras/x264/configure:
+    + Teach the configure script about the Alpha platform.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 11 Nov 2005 18:49:31 +0100
+
+vlc (0.8.4-test2-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    + Build-depend on a newer version of gnutls (Closes: #335774).
+    + Replaced occurrences of "wxwindows" with "wxwidgets" (Closes: #330141).
+  * debian/rules:
+    + Use dh_buildinfo because of all the static libraries we use.
+  * Upstream fixed the wx code so that it builds with newer versions of the
+    library (Closes: #332282, #332773).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 11 Nov 2005 10:41:35 +0100
+
+vlc (0.8.4-svn20050920-3) unstable; urgency=low
+
+  * configure.ac:
+    + Fixed a bug in the gnomevfs plugin configuration.
+  * debian/rules:
+    + Explicitly disable the GnomeVFS plugin (Closes: #329317).
+  * debian/control:
+    + Buuild-depend on yasm on amd64.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 21 Sep 2005 11:36:24 +0200
+
+vlc (0.8.4-svn20050920-2) unstable; urgency=low
+
+  * configure:
+    + Fixed the powerpc build with gcc-4.x.
+  * extras/x264/configure:
+    + Added missing Debian architectures to the configure script.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Sep 2005 17:46:35 +0200
+
+vlc (0.8.4-svn20050920-1) unstable; urgency=low
+
+  * New SVN snapshot.
+  * configure.ac:
+    + Upstream fixed the AltiVec build on PPC.
+  * debian/control:
+    + Build-depend on a newer version of libavcodec. mp2v and mp1v encoders
+      work again (Closes: #324840).
+    + Build-depend on gcc-snapshot on i386 and amd64, because currently only
+      that version of gcc properly builds some of the MMX modules.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Sep 2005 13:43:41 +0200
+
+vlc (0.8.4-svn20050823-2) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on libflac-dev (>= 1.1.2-3) because of the soname
+      change (Closes: #325948).
+  * debian/copyright:
+    + Fixed the FSF address.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu,  1 Sep 2005 12:36:10 +0200
+
+vlc (0.8.4-svn20050823-1) unstable; urgency=low
+
+  * New SVN snapshot.
+  * debian/control:
+    + Build-depend on libsmbclient-dev.
+    + Build-depend on libwxgtk2.6-dev (Closes: #285373), which means the
+      interface now works with non-UTF8 locales (Closes: #308770, #322665).
+    + Build-depend on a newer version of libavcodec.
+  * debian/rules:
+    + Activated SMB client support.
+    + Install desktop files in usr/share/applications instead of
+      usr/share/gnome/apps/Multimedia.
+  * debian/patches/00list:
+    + 20_no-wx-updates.dpatch: disabled the update check.
+    + 20_interfaces.dpatch: disabled deprecated patch.
+  * configure.ac:
+    + Fixes powerpc build.
+  * include/network.h src/misc/net.c:
+    + Fixes HTTP input (Closes: #322757).
+    + Fixes URL encoding in the RTSP module (Closes: #323813).
+  * modules/gui/skins2 modules/gui/wxwidgets:
+    + Fixes a compilation issue on 64-bit architectures (Closes: #324031).
+  * modules/visualization/xosd.c:
+    + Fixes libxosd initialisation (Closes: #324039).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 22 Aug 2005 14:43:48 +0200
+
+vlc (0.8.4-svn20050810-2) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on libarts1-dev (>= 1.4.2-1).
+    + Build-depend on a newer version of libavcodec.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 16 Aug 2005 17:36:21 +0200
+
+vlc (0.8.4-svn20050810-1) unstable; urgency=low
+
+  * New SVN snapshot.
+  * Rebuilt against libaa1 and new wxWin and SDL packages to complete the
+    aalib transition (Closes: #320874) and make the packages installable again
+    (Closes: #319292, #319598, #321461, #322166, #317380).
+  * debian/rules:
+    + Use DEB_BUILD_ARCH_CPU instead of DEB_BUILD_GNU_CPU.
+  * debian/vlc.desktop:
+    + Added desktop file, thanks to Mantas Kriauciunas (Closes: #290612).
+  * debian/control:
+    + Removed unused dummy packages (Closes: #321988, #322003, #322013).
+    + Build-depend on libmatroska-dev (>= 0.7.7).
+    + Build-depend on libwxgtk2.4-dev (>= 2.4.4).
+    + Build-depend on libdvbpsi4-dev instead of libdvbpsi3-dev.
+    * Build-depend on libsdl1.2-dev (>= 1.2.7+1.2.8cvs20041007-5.3).
+    + Build-depend on a newer version of libmatroska-dev and mozilla-dev
+      because of the C++ transition.
+    + Build-depend on libsvga1-dev instead of svgalib1-dev.
+  * This snapshot no longer uses tune=opteron on amd64 (Closes: #316161).
+  * The SVN version adds support for Freebox users (Closes: #317035).
+  * Various gcc-4.x FTBFS were fixed upstream (Closes: #317055).
+  * mozilla/support/npunix.c: fixed undeclared NPP_GetJavaClass
+    (Closes: #317067).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 10 Aug 2005 16:18:37 +0200
+
+vlc (0.8.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * This version fixes the random playlist parsing (Closes: #308375), encodes
+    non-ASCII characters in RTSP requests (Closes: #279735) and fixes an issue
+    with large files (Closes: #306110).
+  * debian/control:
+    + Set policy to 3.6.2.1.
+    + Build-depend on libpng12-dev, xlibmesa-gl-dev.
+    + Build-depend on a more recent ffmpeg library set, to fix nasty visual
+      artifacts with post-processing (Closes: #300220).
+    + mozilla-plugin-vlc recommends mozilla-firefox in addition to
+      mozilla-browser (Closes: #308723).
+    + Now that sarge is out, removed legacy packages that disappeared in woody.
+  * debian/rules:
+    + Activated PNG output support.
+    + Activated GLX output support.
+  * The NEWS file documents the changed behaviour for SAP (Closes: #303262).
+  * Minor typo fixed in the manpage (Closes: #300339).
+  * po/de.po: merged corrections from Jens Seidel (Closes: #313890).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 26 Jun 2005 16:28:19 +0200
+
+vlc (0.8.1.svn20050314-1) unstable; urgency=low
+
+  * More recent SVN snapshot.
+  * This snapshot fixes issues in modules/gui/wxwindows/streamout.cpp that
+    caused FTBFS on 64-bit architectures (Closes: #289923).
+  * debian/control:
+    + Build-depend on new libmatroska and libavcodec versions.
+    + Unfortunate return to wxwidgets 2.4 until 2.5 enters testing.
+    + Upgraded libflac-dev build dependency to (>= 1.1.1-5) to resolve
+      dependency issues (Closes: #298067).
+  * debian/vlc.mime: merged Guido Guenther’s contribution (Closes: #297261).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 14 Mar 2005 10:53:59 +0100
+
+vlc (0.8.1-3) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on fixed ffmpeg packages (Closes: #289444).
+    + Build-depend on a newer libflac-dev so that resulting packages use
+      libflac6 (Closes: #289490).
+  * modules/gui/wxwindows/open.cpp:
+    + Compilation fix for 64 bits systems.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 10 Jan 2005 11:10:02 +0100
+
+vlc (0.8.1-2) unstable; urgency=low
+
+  * debian/control:
+    + Use ffmpeg from Debian instead of the contrib one.
+    + Use wxgtk2.5 instead of 2.4.
+    + Activated the ncurses UI (Closes: #286962).
+  * debian/gnome-vlc.desktop debian/gvlc.desktop:
+    + Fixed the icon location.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu,  6 Jan 2005 18:00:00 +0100
+
+vlc (0.8.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/gnome-vlc.desktop:
+    + Fixed program path (Closes: #280290).
+  * debian/control:
+    + Require an up-to-date liblivemedia.
+    + Build-depend on libgnutls11-dev.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 14 Nov 2004 22:21:23 +0100
+
+vlc (0.8.0.final-1) unstable; urgency=low
+
+  * Final 0.8.0 upstream release.
+  * src/misc/modules.c:
+    + Fixed a startup issue with the svlc shortcut (Closes: #274376).
+  * debian/control:
+    + Suggest the Mozilla and ALSA plugins. Only mentioned the others in
+      the package description because they are not of notable usefulness
+      (Closes: #275160).
+  * modules/access/http.c:
+    + Fix HTTP proxy handling (Closes: #278381).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed,  3 Nov 2004 14:52:05 +0100
+
+vlc (0.8.0-test1-1) unstable; urgency=high
+
+  * New upstream tarball.
+  * debian/rules:
+    + Fixed previously broken DVD support.
+    + Removed currently broken Speex support.
+  * debian/control:
+    + Build-depend on libdvdnav.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat,  4 Sep 2004 02:32:49 +0200
+
+vlc (0.7.2.svn20040827-1) unstable; urgency=high
+
+  * New SVN snapshot.
+  * debian/rules:
+    + Activated x264 support.
+    + Re-enabled libmodplug support.
+    + Build PIC plugins even on x86.
+    + Disabled SLP because its code is broken.
+    + Disabled the GNOME, Qt, GTK+ and KDE interfaces in favour of the
+      WxWidgets one.
+    + Activated HAL support.
+  * debian/control:
+    + Force the vlc-plugin-arts dependencies.
+    + Build-depend on jam and nasm because of x264.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 27 Aug 2004 21:31:13 +0200
+
+vlc (0.7.2.final-11) unstable; urgency=medium
+
+  * configure.ac:
+    + Fixed an LDFLAGS/CFLAGS confusion.
+    + Don't use -finline-limit since it now tries to inline functions that
+      have not been explicitely inlined (Closes: #265673).
+  * debian/patches/20_configure.dpatch:
+    + Don't manage this patch with dpatch since it causes ownership issues.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 15 Aug 2004 01:35:35 +0200
+
+vlc (0.7.2.final-10) unstable; urgency=medium
+
+  * The "I hope I got it right this time" upload.
+  * configure.ac:
+    + Use -maltivec -mabi=altivec for the memcpyaltivec and deinterlace
+      plugins on PowerPC.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 10 Aug 2004 18:01:47 +0200
+
+vlc (0.7.2.final-9) unstable; urgency=low
+
+  * debian/control:
+    + Added a missing dpatch build dependency (Closes: #263363).
+    + Removed the modplug plugin until libmodplug-dev enters Debian.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 10 Aug 2004 11:01:15 +0200
+
+vlc (0.7.2.final-8) unstable; urgency=low
+
+  * debian/control:
+    + Added a missing dpatch build dependency.
+  * configure.ac:
+    + Fixed the powerpc build by conditionally re-enabling -maltivec
+      -mabi=altivec.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 30 Jul 2004 00:05:58 +0200
+
+vlc (0.7.2.final-7) unstable; urgency=low
+
+  * debian/rules:
+    + Switch build system to dpatch.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu, 29 Jul 2004 17:03:51 +0200
+
+vlc (0.7.2.final-6) unstable; urgency=low
+
+  * configure.ac: don't use -maltivec -mabi=altivec, because we don't want
+    to trigger AltiVec optimisations in our generic code (Closes: #256578,
+    Closes: #260819).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 23 Jul 2004 17:21:21 +0200
+
+vlc (0.7.2.final-5) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on libdvbpsi3-dev, so that we can get rid of the previous
+      versions of this library.
+    + Recommend the videolan-doc package.
+    + Build-conflict on libavcodec-dev, just in case it enters Sid at an
+      unappropriate moment.
+  * debian/README.Debian:
+    + Removed mention of the libmpeg2 tree, which we no longer provide.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Jul 2004 11:25:17 +0200
+
+vlc (0.7.2.final-4) unstable; urgency=low
+
+  * debian/rules:
+    + Activated Theora support (Closes: #259061).
+    + Re-enabled the KDE plugin (Closes: #258295).
+  * debian/control:
+    + Set policy to 3.6.1.1.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 13 Jul 2004 00:21:20 +0200
+
+vlc (0.7.2.final-3) unstable; urgency=low
+
+  * extras/ffmpeg/configure: fixed HPPA architecture detection.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 25 Jun 2004 11:55:33 +0200
+
+vlc (0.7.2.final-2) unstable; urgency=low
+
+  * extras/ffmpeg/libavcodec/svq1.c: fixed vector/vect namespace issues on
+    powerpc.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 22 Jun 2004 15:21:09 +0200
+
+vlc (0.7.2.final-1) unstable; urgency=low
+
+  * New upstream release.
+  * Temporarily disabled the KDE GUI plugin.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 29 May 2004 00:06:48 -0300
+
+vlc (0.7.2-test2-1) unstable; urgency=low
+
+  * New upstream snapshot.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu,  6 May 2004 11:11:25 +0200
+
+vlc (0.7.2-test1-4) unstable; urgency=low
+
+  * extras/ffmpeg/libacvodec/Makefile:
+    + Fixed a PARISC/HPPA mix-up.
+  * src/interface/interface.c:
+    + Removed the "switch interface" menu due to wxwin's utter bugosity.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 30 Apr 2004 13:15:59 +0200
+
+vlc (0.7.2-test1-3) unstable; urgency=low
+
+  * configure.ac:
+    + Link DTS plugins with libdts_pic.a, not libdts.a.
+  * debian/control:
+    + Build-depend on libid3tag0-dev for ID3 tag support.
+    + Made vlc depend on wxvlc for the moment.
+  * extras/ffmpeg/libacvodec/Makefile:
+    + Build motion_est.c with -O1.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 30 Apr 2004 10:49:59 +0200
+
+vlc (0.7.2-test1-2) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on libxml2-dev.
+  * extras/ffmpeg/libavcodec/ppc/dsputil_altivec.c:
+    + Syntax fixes for powerpc.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 28 Apr 2004 12:49:18 +0200
+
+vlc (0.7.2-test1-1) unstable; urgency=low
+
+  * New SVN snapshot.
+  * The skinned interface is now the default one (Closes: #245210).
+  * debian/control:
+    + Removed the libdv2-dev build-dependency.
+    + Set the liblivemedia-dev build-dependency to (>= 2004.04.23-1).
+    + Set the libmatroska-dev build-dependency to (>= 0.7.0).
+    + Build-depend on libfribidi-dev.
+    + Build-depend on libcdio-dev.
+    + Build-depend on libmodplug-dev.
+  * debian/rules:
+    + Activated fribidi support.
+    + Activated CDDA support via libcdio.
+    + Activated MOD support.
+  * configure.ac:
+    + Re-enabled i420_yuy2_altivec.
+  * src/interface/interface.c:
+    + Disable unavailable interfaces from the switch menu (Closes: #245209).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 26 Apr 2004 16:30:25 +0200
+
+vlc (0.7.1-7) unstable; urgency=high
+
+  * debian/control:
+    + Override kdelibs4's shlibs value to get VLC into testing.
+    + No longer build-depend on dvb-dev.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Apr 2004 18:00:40 +0200
+
+vlc (0.7.1-6) unstable; urgency=low
+
+  * debian/control:
+    + Removed the build dependency on gcc-3.2 because gcc-3.3 no longer ICEs
+      on ppc/mpegvideo_altivec.o (Closes: #236442).
+    + Build depend on fixed libsdl1.2-dev (>= 1.2.7-5).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue,  6 Apr 2004 10:27:35 +0200
+
+vlc (0.7.1-5) unstable; urgency=low
+
+  * debian/control:
+    + Added a build-dependency on libaudiofile-dev to fix the m68k build.
+  * debian/rules:
+    + Added symlinks for mozilla-firefox (Closes: #239352).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 30 Mar 2004 23:10:20 +0200
+
+vlc (0.7.1-4) unstable; urgency=medium
+
+  * extras/ffmpeg/libavcodec/ppc/mpegvideo_ppc.c:
+    + Replaced fprintf() with av_log() to fix the powerpc build.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 21 Mar 2004 13:59:07 +0100
+
+vlc (0.7.1-3) unstable; urgency=medium
+
+  * debian/rules:
+    + Activated DTS decoding support.
+  * debian/control:
+    + Build-depend on libx11-dev, libxext-dev, libxt-dev instead of xlibs-dev.
+    + Build-depend on libxv-dev, xlibs-static-pic instead of xlibs-pic.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 20 Mar 2004 18:13:43 +0100
+
+vlc (0.7.1-2) unstable; urgency=medium
+
+  * debian/control:
+    + Build-depend on zlib1g-dev because ffmpeg uses it by default.
+  * configure.ac:
+    + Add -lz to the link flags for plugins that use ffmpeg.
+    + Disabled i420_yuy2_altivec for now, because it only has a C version of
+      the AltiVec routines.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu,  4 Mar 2004 17:34:58 +0100
+
+vlc (0.7.1-1) unstable; urgency=medium
+
+  * New upstream release.
+  * debian/copyright:
+    + Added faad2 and ffmpeg authors to the copyright (Closes: #212766).
+  * mozilla/vlcplugin.h:
+    + Added the 'video/x-ms-asf' MIME type to the plugin (Closes: #232690).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed,  3 Mar 2004 10:47:21 +0100
+
+vlc (0.7.0-3) unstable; urgency=medium
+
+  * ppc/mpegvideo_altivec.c:
+    + Build this file with GCC 3.2 to work around an ICE.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 21 Jan 2004 15:36:30 +0100
+
+vlc (0.7.0-2) unstable; urgency=low
+
+  * debian/rules:
+    + Look for faad in extras/faad2, not extras/faad.
+  * modules/demux/mkv.cpp:
+    + Updated mkv module for the latest Matroska version (Closes: #227923).
+  * modules/video_output/caca.c:
+    + Updated caca module for the latest libcaca version.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Jan 2004 18:30:58 +0100
+
+vlc (0.7.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    + Build-depend on fixed dvb-dev packages.
+    + Build-depend on fixed linux-kernel-headers packages.
+  * debian/rules:
+    + Look for faad in extras/faad2, not extras/faad.
+    + Enable postprocessing in the ffmpeg configuration.
+    + Activated libcaca video output.
+  * doc/vlc.1:
+    + Fixed a minor typo (Closes: #223605).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun,  4 Jan 2004 03:29:22 +0100
+
+vlc (0.6.2+cvs20031030-2) unstable; urgency=low
+
+  * debian/control:
+    + Build-depend on a newer wxwindows version to avoid incompatibilities.
+    + Build-depend on linux-kernel-headers and build-conflict on dvb-dev
+      because these packages cannot be installed together.
+  * debian/rules:
+    + Temporarily disabled the framebuffer video output plugin because of
+      current code errors in linux-kernel-headers.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat,  1 Nov 2003 11:01:40 +0100
+
+vlc (0.6.2+cvs20031030-1) unstable; urgency=low
+
+  * New CVS snapshot.
+  * debian/rules:
+    + Disabled the deprecated satellite plugin; the dvb plugin is now
+      the recommended one (Closes: #216367).
+    + Don't install fortunes in /usr/share/games, they are too private for
+      common mortals (Closes: #212856). They are still available in the
+      /usr/share/doc/vlc directory though.
+    + Activated the speex codec.
+    + Activated the PVR input module.
+  * debian/control:
+    + Depend on ttf-freefont for subtitles.
+    + Upgraded debhelper build-dependency to (>= 4.0).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri, 31 Oct 2003 11:08:57 +0100
+
+vlc (0.6.2-3) unstable; urgency=low
+
+  * debian/control:
+    + Set libxosd-dev build-dependency to (>= 2.2.4-1.3) because previous
+      versions were broken on s390 (Closes: #208383).
+    + Rewrote long descriptions (Closes: #209602, #209615, #209628, #209636,
+      Closes: #209774, #209914, #210028, #210095).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Mon, 15 Sep 2003 21:28:43 +0200
+
+vlc (0.6.2-2) unstable; urgency=low
+
+  * debian/control:
+    + Set libmatroska-dev build-dependency to (>= 0.5.0-3) because previous
+      versions were broken on platforms where PIC/non-PIC cannot be mixed in
+      objects (Closes: #208383).
+    + Set policy to 3.6.1.0.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Fri,  5 Sep 2003 02:32:54 +0200
+
+vlc (0.6.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    + Added a build-dependency on freetype6-dev.
+    + Added a build-dependency on libdvbpsi2-dev.
+    + We now recommend gnome-vlc | wxvlc.
+    + We now suggest fortune-mod.
+  * This release now uses libfreetype to render subtitles, and we recommend
+    ttf-freefont | ttf-thryomanes, so that the old .rle font is no longer
+    needed (Closes: #203013).
+  * extras/faad:
+    + aclocal-1.6 && autoconf && automake-1.6 -a -c -f && libtoolize -c -f
+  * extras/faad/common/mp4v2:
+    + aclocal-1.4 && autoconf && autoheader && automake-1.4 --foreign -a -c \
+      && libtoolize -c -f
+  * extras/mpeg2dec:
+    + aclocal-1.7 && autoconf && automake-1.7 -a -c && libtoolize -c -f
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue,  2 Sep 2003 10:45:24 +0200
+
+vlc (0.6.0+cvs-20030716-2) unstable; urgency=low
+
+  * debian/control:
+    + Updated debhelper build-dependency to (>= 3.4.4) because we now
+      use debian/compat.
+    + Use ${misc:Depends} everywhere.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 16 Jul 2003 16:55:31 +0200
+
+vlc (0.6.0+cvs-20030716-1) unstable; urgency=low
+
+  * New CVS snapshot.
+  * debian/control:
+    + Set policy to 3.6.0. No changes required.
+    + Extended the package description.
+  * modules/video_output/x11/xcommon.c:
+    + Fix for crashes in the Mozilla plugin (Closes: #200920).
+  * mozilla/*:
+    + Compilation fixes for Mozilla 1.4 headers (Closes: #201093).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Wed, 16 Jul 2003 16:55:31 +0200
+
+vlc (0.6.0+cvs-20030705-1) unstable; urgency=low
+
+  * New CVS snapshot.
+    + Includes previous Debian fixes.
+    + Errors in plugins now properly trigger build abort so that no build
+      failures are missed. Thanks to LaMont Jones for pointing out the problem.
+  * debian/rules:
+    + Enabled Matroska support.
+    + Only build builtins in the first compile pass so that we don't mix PIC
+      and non-PIC code (Closes: #199968). Phew, I hope I got it right this
+      time.
+  * extras/ffmpeg:
+    + Re-applied the Alpha build fix from 0.6.0+cvs-20030627-2 that had
+      disappeared in 0.6.0+cvs-20030703-1.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat,  5 Jul 2003 01:09:11 +0200
+
+vlc (0.6.0+cvs-20030703-1) unstable; urgency=low
+
+  * New CVS snapshot.
+    + Includes previous Debian fixes.
+    + Build should be a bit faster now.
+  * extras/faad:
+    + aclocal-1.6 && autoconf && automake-1.6 -a -c -f && libtoolize -c -f
+  * extras/faad/common/id3lib:
+    + mkdir doc examples
+    + aclocal-1.4 && autoconf && automake-1.4 -a -c && libtoolize -c -f
+  * extras/mpeg2dec:
+    + aclocal-1.7 && autoconf && automake-1.7 -a -c && libtoolize -c -f
+    + Fixes build on parisc (Closes: #199693).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Thu,  3 Jul 2003 11:25:57 +0200
+
+vlc (0.6.0+cvs-20030627-2) unstable; urgency=low
+
+  * extras/ffmpeg:
+    + Fixed compilation for Alpha.
+  * debian/rules:
+    + Enabled the video4linux input plugin (Closes: #199427).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sun, 29 Jun 2003 21:12:10 +0200
+
+vlc (0.6.0+cvs-20030627-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/rules:
+    + Replaced $(DEB_BUILD_ARCH) with `dpkg-architecture -qDEB_BUILD_GNU_CPU`
+      so that the rules can be called directly.
+    + Use the -s flag instead of -a so that debhelper properly handles the
+      i386-only plugin packages.
+    + Split the build rule into configure and build.
+  * debian/control:
+    + Removed leading "a"s from package descriptions.
+    + Set policy to 3.5.10.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Sat, 21 Jun 2003 17:55:07 +0200
+
+vlc (0.5.3-3) unstable; urgency=low
+
+  * Built-in modules were linked twice in the mozilla plugin; removed the
+    non-PIC ones (Closes: #194384).
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri, 23 May 2003 11:15:19 +0200
+
+vlc (0.5.3-2) unstable; urgency=low
+
+  * Changed the libvlc0-dev section to libdevel.
+  * We now build the static objects twice: once the normal way before we
+    link them with VLC, and once with -fPIC so that they can be linked to
+    the Mozilla plugin.
+  * Updated extras/faad/config.{sub,guess}.
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri, 14 Apr 2003 15:14:07 +0200
+
+vlc (0.5.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Fixed a clock skew issue in debian/rules.
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue,  8 Apr 2003 15:20:20 +0100
+
+vlc (0.5.2-4) unstable; urgency=low
+
+  * Changed the section of gnome-vlc and kvlc according to new Debian
+    archive sections.
+  * Updated woody-buildpackage so that packages say "stable".
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue,  1 Apr 2003 18:08:01 +0200
+
+vlc (0.5.2-3) unstable; urgency=low
+
+  * Added explicit dependencies on vlc to legacy packages to make linda and
+    lintian happier.
+  * Added correct versioned build-dependency on debhelper.
+  * Updated the autotools helper files in extras/faad.
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed, 26 Mar 2003 02:50:34 +0100
+
+vlc (0.5.2-2) unstable; urgency=low
+
+  * Bumped up standards version to 0.5.9.0.
+  * Added build-dependencies on libidl0 and libglib2.0-0 to work around
+    mozilla-dev's currently broken dependencies.
+  * We now link against libdvdread3 instead of libdvdread2.
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue, 25 Mar 2003 23:21:51 +0100
+
+vlc (0.5.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * Removed vlc-plugin-dvb, vlc-plugin-xosd, vlc-plugin-aa, vlc-plugin-lirc and
+    vlc-plugin-dv packages because the dependencies are quite small, and merged
+    them into the main vlc package.
+  * Removed the vlc-mad, vlc-arts, vlc-lirc and vlc-aa legacy packages because
+    they were not in woody.
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue, 11 Mar 2003 20:32:36 +0100
+
+vlc (0.5.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * The vlc-glide package is now Architecture: i386 only.
+  * The vlc-plugin-mad package Provides: mp3-decoder.
+  * The deprecated vlc-* packages have a proper link to /usr/share/doc/vlc/.
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat, 15 Feb 2003 03:43:33 +0100
+
+vlc (0.5.0-1) unstable; urgency=low
+
+  * New upstream release (Closes: #157166).
+  * Audio MPEG and A52 decoders now use external libraries (libmad, liba52).
+  * Build-Depends are now valid (Closes: #147103).
+  * More robust AVI parser (Closes: #158037).
+  * An issue with X taking more and more CPU was fixed (Closes: #153286).
+  * Package now includes a NEWS file.
+  * New package containing a Mozilla plugin.
+  * New codec packages: Ogg/Vorbis, DV.
+  * New GUI package: wxvlc (wxWindows).
+  * New debian/woody-buildpackage file that can be used to build Woody
+    packages.
+  * Made the GNOME desktop entries more user-friendly (Closes: #149749).
+
+ -- Samuel Hocevar <sam at zoy.org>  Thu,  4 Jul 2002 17:44:25 +0200
+
+vlc (0.4.1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Mon,  3 Jun 2002 23:43:35 +0200
+
+vlc (0.4.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Thu, 23 May 2002 01:27:05 +0200
+
+vlc (0.3.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Fixes a crash in the Gtk+ interface.
+
+ -- Samuel Hocevar <sam at zoy.org>  Thu, 18 Apr 2002 06:43:42 +0200
+
+vlc (0.3.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Reworked Gtk interface (Closes: #138732), with a working preferences
+    dialog (Closes: #134142, #134147).
+  * The ALSA plugin now supports S/PDIF (Closes: #118301).
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat,  6 Apr 2002 04:27:50 +0200
+
+vlc (0.2.92-8) unstable; urgency=high
+
+  * Only link with libXv.a if libXv_pic.a wasn't found, which fixes
+    package builds on sid.
+  * Added -ffunction-sections to the compilation of mpeg_vdec.a when
+    the architecture is hppa.
+
+ -- Samuel Hocevar <sam at zoy.org>  Sun,  6 Jan 2002 06:56:08 +0100
+
+vlc (0.2.92-7) unstable; urgency=high
+
+  * Fixed configure.in so that it doesn't fail on hppa.
+  * Fixed a symbol resolution issue that made vlc crash when libdvdcss
+    was installed.
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat,  5 Jan 2002 03:46:23 +0100
+
+vlc (0.2.92-6) unstable; urgency=high
+
+  * Attempt to fix IA64 and hppa builds.
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri,  4 Jan 2002 14:11:02 +0100
+
+vlc (0.2.92-5) unstable; urgency=high
+
+  * Many fixes imported from the 0.2.92 upstream release (VCD input,
+    buffer management, decoder error management).
+  * Removed a stupid dependency on libc6 which prevented the package
+    from being built on alpha.
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed,  2 Jan 2002 04:16:44 +0100
+
+vlc (0.2.92-4) unstable; urgency=high
+
+  * Put debian/control and debian/rules in sync again (Closes: #126697).
+  * Replaced the 48x48 XPM icons with 32x32 icons to comply with policy
+    (Closes: #126939).
+  * Don't spawn the Gtk+ or the Gnome interface if no $DISPLAY variable is
+    present, which fixes the framebuffer output (Closes: #101753).
+
+ -- Samuel Hocevar <sam at zoy.org>  Sun, 30 Dec 2001 02:59:01 +0100
+
+vlc (0.2.92-3) unstable; urgency=high
+
+  * Removed references to vlc-mad (Closes: #126194).
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat, 22 Dec 2001 21:04:27 +0100
+
+vlc (0.2.92-2) unstable; urgency=high
+
+  * Bumped urgency to high to get this stable version into testing; all
+    reported critical bugs were fixed.
+  * Bumped Standards-Version to 3.5.6.
+  * Fixed a PowerPC compilation issue.
+  * Fixed a crash in the VCD input.
+
+ -- Samuel Hocevar <sam at zoy.org>  Thu, 20 Dec 2001 23:24:21 +0100
+
+vlc (0.2.92-1) unstable; urgency=low
+
+  * Using the stable 0.2.92 CVS branch, has lots of stability fixes.
+  * Disabled broken ALSA audio output (Closes: #110869, #119846).
+  * Changed configure.in so that vlc is linked against libXv.a,
+    not xvideo.so and sdl.so (Closes: #111790).
+  * Added versioned build-dep to libasound2-dev (Closes: #121057).
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed, 19 Dec 2001 17:06:44 +0100
+
+vlc (0.2.91-2) unstable; urgency=low
+
+  * Added "Video" menu hints (Closes: #121036).
+
+ -- Samuel Hocevar <sam at zoy.org>  Sun, 25 Nov 2001 02:25:34 +0100
+
+vlc (0.2.91-1) unstable; urgency=low
+
+  * New upstream release.
+  * This release fixes IFO parsing issues (Closes: #119369).
+  * vlc will dlopen() an installed libdvdcss if available, to play
+    encrypted DVDs (Closes: #89856).
+  * vlc is now in sync with the official libdvdcss (Closes: #118194).
+
+ -- Samuel Hocevar <sam at zoy.org>  Mon, 12 Nov 2001 17:14:29 +0100
+
+vlc (0.2.90-3) unstable; urgency=low
+
+  * Added stricter Build-Depends on libsdl1.2-dev (Closes: #117180).
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri, 26 Oct 2001 16:06:01 +0200
+
+vlc (0.2.90-2) unstable; urgency=low
+
+  * Various upstream bugfixes.
+  * Compiled against libsdl1.2-debian (Closes: #116709).
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue, 23 Oct 2001 02:09:39 +0200
+
+vlc (0.2.90-1) unstable; urgency=low
+
+  * Fixed syntax error in build dependencies (Closes: #109722).
+  * XVideo module now compiled as built-in, to avoid PIC and non-PIC
+    code collision (Closes: #111790).
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed, 10 Oct 2001 15:00:29 +0200
+
+vlc (0.2.83-2) unstable; urgency=low
+
+  * Fixed build dependencies for architectures not supporting libasound2
+    (Closes: #109722).
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri, 24 Aug 2001 12:47:45 +0200
+
+vlc (0.2.83-1) unstable; urgency=low
+
+  * New upstream release.
+  * Activated subtitles in overlay mode (Closes: #97471).
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed, 22 Aug 2001 15:18:01 +0200
+
+vlc (0.2.82-1) unstable; urgency=low
+
+  * New upstream release.
+  * Fixed broken manpage symlinks (Closes: #99561).
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue,  7 Aug 2001 12:39:16 +0200
+
+vlc (0.2.81-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat, 28 Jul 2001 04:13:57 +0200
+
+vlc (0.2.80-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue,  5 Jun 2001 04:41:06 +0200
+
+vlc (0.2.73-2) unstable; urgency=low
+
+  * We now build without MMX in the main application (Closes: #96036).
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri,  4 May 2001 07:13:04 +0200
+
+vlc (0.2.73-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat, 28 Apr 2001 07:02:35 +0200
+
+vlc (0.2.72-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Mon, 16 Apr 2001 14:33:53 +0200
+
+vlc (0.2.71-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri, 13 Apr 2001 08:13:26 +0200
+
+vlc (0.2.70-1) unstable; urgency=low
+
+  * New upstream release.
+  * Non-i386 package builds really fixed (Closes: #89285).
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat,  7 Apr 2001 05:52:00 +0200
+
+vlc (0.2.63-3) unstable; urgency=low
+
+  * Added versioned conflicts/replaces to vlc-gtk (Closes: #88796).
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed,  7 Mar 2001 20:47:48 +0100
+
+vlc (0.2.63-2) unstable; urgency=low
+
+  * Glide shouldn't cause any non-x86 problems anymore (Closes: #88583).
+
+ -- Samuel Hocevar <sam at zoy.org>  Mon,  5 Mar 2001 12:50:28 +0100
+
+vlc (0.2.63-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Mon,  5 Mar 2001 00:41:16 +0100
+
+vlc (0.2.62-2) unstable; urgency=low
+
+  * Removed a few lintian warnings.
+
+ -- Samuel Hocevar <sam at zoy.org>  Sat,  3 Mar 2001 10:29:31 +0100
+
+vlc (0.2.62-1) unstable; urgency=low
+
+  * New release. Glide and GGI packages build again.
+  * Updated vlc.1 manpage (Closes: #87478).
+  * Fixed debian/control (Closes: #83707).
+  * The framebuffer plugin doesn't hijack ^C anymore (Closes: #87500).
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri,  2 Mar 2001 17:32:24 +0100
+
+vlc (0.2.61-1) unstable; urgency=low
+
+  * New release. The package build works again.
+
+ -- Samuel Hocevar <sam at zoy.org>  Fri, 16 Feb 2001 08:09:59 +0100
+
+vlc (0.2.60-1) unstable; urgency=low
+
+  * New release. The package build is most presumably FUBAR.
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed, 14 Feb 2001 08:33:46 +0100
+
+vlc (0.2.50nocss-1) unstable; urgency=low
+
+  * Only build vlc-glide under x86 (Closes: #84046).
+  * Switched PentiumPro optimization off (Closes: #83707).
+
+ -- Samuel Hocevar <sam at zoy.org>  Mon,  5 Feb 2001 20:49:15 +0100
+
+vlc (0.2.50-1) unstable; urgency=low
+
+  * Unstable release.
+
+ -- Samuel Hocevar <sam at zoy.org>  Wed, 31 Jan 2001 04:30:37 +0100
+
+vlc (0.1.99i) unstable; urgency=low
+
+  * Fixed the framerate display
+
+ -- Samuel Hocevar <sam at zoy.org>  Tue, 24 Oct 2000 11:08:01 +0200
+
+vlc (0.1.99i) unstable; urgency=low
+
+  * fixed the support for field pictures, which involved a few dozens
+    bugs in the video parser and video decoder.
+  * renamed an inconsistent variable in src/input/input_file.c.
+  * added support for I+ synchro (all Is and the first P).
+  * fixed a motion compensation bug which generated some distortion
+    on B images.
+  * fixed a motion compensation bug for skipped macroblocks.
+  * fixed a synchro bug for field images.
+  * fixed the --server option which didn't work if a ~/.vlcrc existed.
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Mon, 28 Aug 2000 02:34:18 +0200
+
+vlc (0.1.99h) unstable; urgency=low
+
+  * added support for the SDL vout : the --display fullscreen allows
+    fullscreen when possible. Disabled by default.
+  * updated debian directory to build vlc-sdl.
+  * removed CCFLAGS flags which were improperly used.
+  * added hints for powerpc build.
+  * fixed the input_file exit bug.
+  * removed the frame statistics output.
+  * removed a verbose message in intf_sdl.c.
+  * added a few sanity checks in the audio mpeg and ac3 decoders.
+  * temporarily got rid of vlc.channels.
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Tue, 22 Aug 2000 01:31:58 +0200
+
+vlc (0.1.99g) unstable; urgency=low
+
+  * removed all "*vlc" aliases except "gvlc" and "fbvlc". The other sucked.
+  * new --synchro flag which lets you force which images are decoded.
+  * fixed 32bpp MMX YUV, made the comments clearer, removed an emms.
+  * now scaling is on by default, so that people won't tell that the vlc
+    cannot do scaling :-)
+  * fixed 8bpp YUV.
+  * fixed the fscked up Bresenham algorithm in all YUV functions.
+  * fixed a dumb bug in the Makefile that prevented inclusion of the
+    -march=pentium directive. thanks Meuuh, blame sam.
+  * separate Debian packages
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Wed, 16 Aug 2000 01:07:14 +0200
+
+vlc (0.1.99f) unstable; urgency=low
+
+  * plugin detection now works
+  * "gvlc", "fbvlc", "ggivlc" aliases now work
+  * fixed functions that weren't properly inlined
+  * removed bloat from the MMX YUV plugin
+  * vlc.init becomes ~/.vlcrc
+  * removed float operations in the video decoder, and all emms asm functions
+  * borrowed linuxvideo's MMX motion compensation
+  * fixed an undefined symbol in the MMX YUV plugin
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Tue,  8 Aug 2000 11:24:01 +0200
+
+vlc (0.1.99e) unstable; urgency=low
+
+  * new bitstream syntax and slight performance increase
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Thu, 20 Jul 2000 15:14:06 +0200
+
+vlc (0.1.99d) unstable; urgency=low
+
+  * .deb is now more lintian-friendly
+  * removed a few useless warning messages
+  * new plugin API
+  * plugin auto-detection
+  * removed the default --enable-ppro option because it didn't work on K6-2
+  * the framebuffer client now leaves the console in a working state
+  * the dithered 8 bpp YUV transformation works again (blame bbp !)
+  * the YUV transformations are now plugins as well
+  * alternative symlinks like gvlc, fbvlc are now created at compile time
+  * borrowed libmpeg2's GPLed MMX YUV transformations (16 and 32 bits)
+  * fixed an endianness problem which occurred on iMacs
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Wed, 12 Jul 2000 01:24:40 +0200
+
+vlc (0.1.99c) unstable; urgency=low
+
+  * Caught Delete Window event in Gnome and X11 modes
+  * Fixed manpage
+  * GGI output now works
+  * Fixed a segfault on exit for the Gnome plugin
+  * Sound support almost works under BeOS
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Tue, 20 Jun 2000 03:01:12 +0200
+
+vlc (0.1.99b) unstable; urgency=low
+
+  * Added a ChangeLog file
+  * Updated the VLAN code
+  * Fixed a bug preventing to quit
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Sat, 17 Jun 2000 03:46:16 +0200
+
+vlc (0.1.99a) unstable; urgency=low
+
+  * Fixed some compile flag errors
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Thu, 15 Jun 2000 20:48:54 +0200
+
+vlc (0.1.99-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Samuel Hocevar <sam at via.ecp.fr>  Mon, 13 Mar 2000 02:21:45 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8fe4ae4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,348 @@
+Source: vlc
+Section: video
+Priority: optional
+Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers at lists.alioth.debian.org>
+Uploaders: Clément Stenac <zorglub at debian.org>,
+           Loic Minier <lool at dooz.org>,
+           Christophe Mutricy <xtophe at videolan.org>,
+           Mohammed Adnène Trojette <adn+deb at diwi.org>,
+           Reinhard Tartler <siretart at tauware.de>,
+           Benjamin Drung <bdrung at debian.org>,
+           Edward Wang <edward.c.wang at compdigitec.com>,
+           Mateusz Łukasik <mati75 at linuxmint.pl>
+Build-Depends: autopoint,
+               debhelper (>= 9),
+               dh-autoreconf,
+               dh-buildinfo,
+               gettext,
+               liba52-0.7.4-dev,
+               libaa1-dev,
+               libasound2-dev (>= 1.0.24) [linux-any],
+               libass-dev (>= 0.9.8),
+               libavahi-client-dev,
+               libavc1394-dev (>= 0.5.3) [linux-any],
+               libavcodec-dev (>= 4:0.6),
+               libavformat-dev (>= 4:0.6),
+               libbluray-dev (>= 1:0.2.1),
+               libcaca-dev (>= 0.99.beta4),
+               libcddb2-dev,
+               libcdio-dev (>= 0.78.2),
+               libchromaprint-dev (>= 0.6.0),
+               libcrystalhd-dev [amd64 i386],
+               libdc1394-22-dev (>= 2.1.0) [linux-any],
+               libdca-dev,
+               libdirac-dev,
+               libdirectfb-dev,
+               libdvbpsi-dev | libdvbpsi5-dev,
+               libdvdnav-dev,
+               libdvdread-dev (>= 0.9.5),
+               libfaad-dev,
+               libflac-dev (>= 1.1.2-3),
+               libfluidsynth-dev (>= 1.1.2),
+               libfreerdp-dev (>= 1.0.1),
+               libfreetype6-dev,
+               libfribidi-dev,
+               libgl1-mesa-dev,
+               libgnutls28-dev (>= 3.0.20),
+               libgtk2.0-dev,
+               libidn11-dev,
+               libiso9660-dev (>= 0.72),
+               libjack-dev,
+               libkate-dev (>= 0.3.0),
+               liblircclient-dev,
+               liblivemedia-dev (>= 2011.12.23),
+               liblua5.2-dev,
+               libmad0-dev,
+               libmatroska-dev (>= 1.0.0),
+               libmodplug-dev (>= 1:0.8.8.1),
+               libmpcdec-dev,
+               libmpeg2-4-dev,
+               libmtp-dev (>= 1.0.0),
+               libncursesw5-dev,
+               libnotify-dev,
+               libogg-dev (>= 1.0),
+               libomxil-bellagio-dev [linux-any],
+               libopus-dev,
+               libpng-dev,
+               libpostproc-dev (>= 4:0.6),
+               libpulse-dev (>= 0.9.11),
+               libqt4-dev (>= 4:4.6.0),
+               libraw1394-dev (>= 2.0.1) [linux-any],
+               libresid-builder-dev,
+               librsvg2-dev,
+               libsamplerate0-dev,
+               libschroedinger-dev (>= 1.0.10),
+               libsdl-image1.2-dev,
+               libsdl1.2-dev (>= 1.2.10),
+               libshout3-dev,
+               libsidplay2-dev,
+               libsmbclient-dev,
+               libspeex-dev (>= 1.0.5),
+               libspeexdsp-dev (>= 1.0.5),
+               libssh2-1-dev,
+               libswscale-dev (>= 4:0.6),
+               libtag1-dev (>= 1.6.1),
+               libtar-dev,
+               libtheora-dev (>= 1.0),
+               libtwolame-dev (>= 0.3.8),
+               libudev-dev [linux-any],
+               libupnp-dev,
+               libv4l-dev [linux-any],
+               libva-dev [kfreebsd-any linux-any],
+               libvcdinfo-dev (>= 0.7.22),
+               libvorbis-dev,
+               libx11-dev,
+               libx264-dev (>= 2:0.86),
+               libxcb-composite0-dev,
+               libxcb-keysyms1-dev (>= 0.3.4),
+               libxcb-randr0-dev (>= 1.3),
+               libxcb-shm0-dev,
+               libxcb-xv0-dev (>= 1.1.90.1),
+               libxcb1-dev (>= 1.6),
+               libxext-dev,
+               libxinerama-dev,
+               libxml2-dev,
+               libxpm-dev,
+               libzvbi-dev (>= 0.2.28),
+               lua5.2,
+               oss4-dev,
+               pkg-config,
+               zlib1g-dev
+Standards-Version: 3.9.5
+Homepage: http://www.videolan.org/vlc/
+Vcs-Git: git://anonscm.debian.org/pkg-multimedia/vlc.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/vlc.git
+
+Package: libvlc-dev
+Section: libdevel
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: libvlc5 (= ${binary:Version}), pkg-config, ${misc:Depends}
+Replaces: libvlc0-dev
+Description: development files for libvlc
+ This package contains headers and a static library required to build
+ standalone applications that use VLC features.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: libvlc5
+Section: libs
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Replaces: vlc (<< 0.8.6.c-6)
+Description: multimedia player and streamer library
+ This package contains the shared library required by applications using VLC
+ features.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: libvlccore-dev
+Section: libdevel
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: libvlccore7 (= ${binary:Version}), pkg-config, ${misc:Depends}
+Description: development files for libvlccore
+ This package contains headers and a static library required to build plugins
+ for VLC.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: libvlccore7
+Section: libs
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: libproxy-tools,
+         vlc-data (= ${source:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends}
+Description: base library for VLC and its modules
+ This package contains the shared library required by VLC modules and libvlc.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: fonts-freefont-ttf,
+         vlc-nox (= ${binary:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends}
+Recommends: vlc-plugin-notify (= ${binary:Version}),
+            vlc-plugin-pulse (= ${binary:Version}),
+            xdg-utils
+Suggests: videolan-doc
+Breaks: vlc-data (<< 1.1.5), vlc-nox (<< 2.0.2)
+Replaces: vlc-data (<< 1.1.5), vlc-nox (<< 2.0.2)
+Provides: mp3-decoder
+Description: multimedia player and streamer
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+ .
+ VLC can also be used as a streaming server that duplicates the stream it
+ reads and multicasts them through the network to other clients, or serves
+ them through HTTP.
+ .
+ VLC has support for on-the-fly transcoding of audio and video formats, either
+ for broadcasting purposes or for movie format transformations. Support for
+ most output methods is provided by this package, but features can be added
+ by installing additional audio plugins (vlc-plugin-pulse, vlc-plugin-sdl)
+ or video plugins (vlc-plugin-sdl).
+
+Package: vlc-data
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: ${misc:Depends}
+Architecture: all
+Breaks: vlc-nox (<< 2.0.1-3)
+Replaces: mozilla-plugin-vlc (<< 0.9.2-1),
+          vlc (<< 0.9.2-1),
+          vlc-nox (<< 2.0.1-3)
+Description: Common data for VLC
+ Localisations, HTTP interface files, Lua scripts for VLC media player
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-dbg
+Section: debug
+Priority: extra
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}
+Description: debugging symbols for vlc
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+ .
+ This package contains the debugging symbols for vlc.
+
+Package: vlc-nox
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Recommends: libdvdcss2
+Breaks: vlc (<< 2.1.0)
+Replaces: vlc (<< 2.1.0)
+Provides: mp3-decoder
+Description: multimedia player and streamer (without X support)
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+ .
+ VLC can also be used as a streaming server that duplicates the stream it
+ reads and multicasts them through the network to other clients, or serves
+ them through HTTP.
+ .
+ VLC has support for on-the-fly transcoding of audio and video formats, either
+ for broadcasting purposes or for movie format transformations. Support for
+ most output methods is provided by this package, but features can be added
+ by installing additional audio plugins (vlc-plugin-pulse, vlc-plugin-sdl,
+ vlc-plugin-jack) or video plugins (vlc-plugin-sdl).
+ .
+ This package contains a version of VLC that does not require X and that is
+ thus suitable for headless servers.
+
+Package: vlc-plugin-fluidsynth
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: fluid-soundfont-gm | musescore-soundfont-gm,
+         vlc-nox (= ${binary:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends}
+Description: FluidSynth plugin for VLC
+ This plugin adds support for playing MIDI file via the FluidSynth software
+ synthesizer to the VLC media player.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-plugin-jack
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Description: Jack audio plugins for VLC
+ These plugins add support for JACK to the VLC media player. To
+ activate the audio output module, use the `--aout jack' flag or
+ select the `jack' audio output plugin from the preferences menu.
+ For the jack input, use `vlc jack://channels=...:ports=...'
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-plugin-notify
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Breaks: vlc-nox (<< 1.1.2)
+Replaces: vlc-nox (<< 1.1.2)
+Description: LibNotify plugin for VLC
+ This plugin adds support for libnotify track change notification to the
+ VLC media player.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-plugin-pulse
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Description: PulseAudio plugin for VLC
+ This plugin adds support for PulseAudio to the VLC media player. To
+ activate the audio output module, use the `--aout pulse' flag or
+ select the `pulse' audio output plugin from the preferences menu.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-plugin-sdl
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Description: SDL video and audio output plugin for VLC
+ This plugin adds support for the Simple DirectMedia Layer library to
+ the VLC media player. To activate it, use the `--vout sdl' or
+ `--aout sdl' flags or select the `sdl' video or audio output plugin
+ from the preferences menu.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-plugin-svg
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Description: SVG plugin for VLC
+ This plugin allows you to render SVG graphics on top of the video. It is a text
+ renderer, and must be activated through the '--text-renderer svg' option. When
+ sent non-SVG data, it will convert it to SVG using a template that can be
+ specified by the svg-template-file option.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
+
+Package: vlc-plugin-zvbi
+Architecture: any
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Description: VBI teletext plugin for VLC
+ This plugin adds support for VBI teletext to the VLC media player.
+ .
+ VLC is the VideoLAN project's media player. It plays MPEG, MPEG-2, MPEG-4,
+ DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis files, DVDs, VCDs,
+ podcasts, and multimedia streams from various network sources.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6f14f38
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,1323 @@
+This package was initially debianized by Sam Hocevar <sam at zoy.org> on
+Mon, 13 Mar 2000 02:21:45 +0100.
+
+Christophe Mutricy <xtophe at videolan.org>,  Reinhard Tartler, Mohammed
+Adnène Trojette have contributed to the packaging.
+
+It was taken from http://download.videolan.org/pub/vlc/
+
+1. Copyright holders list
+=========================
+
+With the exception of other files mentioned in this document, all code and
+artwork belongs to members of the VideoLAN team <videolan at videolan.org>. See
+each file for precise details about its respective authors.
+
+Copyright (c) 1996-2013 the VideoLAN Team
+Rémi Denis-Courmont
+Jean-Baptiste Kempf
+Laurent Aimar
+Gildas Bazin
+Felix Paul Kühne
+Rafaël Carré
+Pierre d'Herbemont
+Rémi Duraffort
+Derk-Jan Hartman
+Antoine Cellerier
+Samuel Hocevar
+Jean-Paul Saman
+Christophe Mutricy
+Clément Stenac
+Christophe Massiot
+Ilkka Ollakka
+Pierre Ynard
+François Cartegnie
+Damien Fouilleul
+Sigmund Augdal Helberg
+Erwan Tulou
+David Fuhrmann
+Olivier Teulière
+Cyril Deguet
+Eric Petit
+Filippo Carone
+Rocky Bernstein
+Hugo Beauzée-Luyssen
+Olivier Aubert
+Pavlov Konstantin
+Jakob Leben
+Benjamin Pracht
+Jean-Philippe André
+Steve Lhomme
+Stéphane Borel
+JP Dinger
+Geoffroy Couprie
+Martin Storsjö
+Marian Ďurkovič
+Ludovic Fauvet
+Yoann Peronneau
+Sébastien Escudier
+Jon Lech Johansen
+KO Myung-Hun
+Edward Wang
+Dennis van Amerongen
+Faustino Osuna
+Mirsal Ennaime
+Denis Charmet
+Jérôme Decoodt
+Loïc Minier
+David Flynn
+Frédéric Yhuel
+Kaarlo Raiha
+Mark Moriarty
+Christopher Mueller
+Fabio Ritrovato
+Tony Castley
+Srikanth Raju
+Michel Kaempf
+Jean-Marc Dressler
+Johan Bilien
+Vincent Seguin
+Simon Latapie
+Bernie Purcell
+Henri Fallon
+Sebastien Zwickert
+Christoph Miebach
+Adrien Maglo
+Emmanuel Puig
+Renaud Dartus
+Alexis de Lattre
+Vincent Penquerc'h
+Arnaud de Bossoreille de Ribou
+Mohammed Adnène Trojette
+Boris Dorès
+Jai Menon
+Anil Daoud
+Daniel Mierswa
+Naohiro Koriyama
+Rob Jonson
+Pierre Baillet
+Dominique Leuenberger
+Andre Pang
+Zoran Turalija
+Akash Mehrotra
+André Weber
+Anthony Loiseau
+Lukas Durfina
+Xavier Marchesini
+Cyril Mathé
+Devin Heitmueller
+Juho Vähä-Herttua
+Ken Self
+Alexis Ballier
+Juha Jeronen
+Nicolas Chauvet
+Richard Hosking
+Éric Lassauge
+Marc Ariberti
+Sébastien Toque
+Tobias Güntner
+Benoit Steiner
+Michel Lespinasse
+Carlo Calabrò
+Cheng Sun
+Michał Trzebiatowski
+Brad Smith
+Brendon Justin
+Alexey Sokolov
+Basos G
+Philippe Morin
+Steinar H. Gunderson
+Vicente Jimenez Aguilar
+Yuval Tze
+Yves Duret
+Benjamin Drung
+Michael Hanselmann
+Alex Merry
+Damien Lucas
+Grigori Goronzy
+Richard Shepherd
+Gaël Hendryckx
+Michael Feurstein
+Stephan Assmus
+Adrien Grand
+Colin Guthrie
+David Menestrina
+Dominique Martinet
+Gleb Pinigin
+Jason Luka
+Luc Saillard
+Luca Barbato
+Mario Speiß
+Pankaj Yadav
+Ramiro Polla
+Ronald Wright
+Rui Zhang
+Can Wu
+Christophe Courtaut
+FUJISAWA Tooru
+Hannes Domani
+Manol Manolov
+Timothy B. Terriberry
+Antoine Lejeune
+Arnaud Schauly
+Branko Kokanovic
+Dylan Yudaken
+Florian G. Pflug
+François Revol
+G Finch
+Keary Griffin
+Konstanty Bialkowski
+Ming Hu
+Philippe Coent
+Przemyslaw Fiala
+Tanguy Krotoff
+Vianney BOYER
+Casian Andrei
+Chris Smowton
+David Kaplan
+Eugenio Jarosiewicz
+Fabian Keil
+Guillaume Poussel
+John Peterson
+Justus Piater
+Mark Lee
+Martin T. H. Sandsmark
+Rune Botten
+Søren Bøg
+Toralf Niebuhr
+Tristan Matthews
+Angelo Haller
+Aurélien Nephtali
+Austin Burrow
+Bill C. Riemers
+Colin Delacroix
+Cristian Maglie
+Elminster2031
+Jakub Wieczorek
+John Freed
+Mark Hassman
+Martin Briza
+Mike Houben
+Romain Goyet
+Adrian Yanes
+Alexander Lakhin
+Anatoliy Anischovich
+Barry Wardell
+Ben Hutchings
+Besnard Jean-Baptiste
+Brian Weaver
+Clement Chesnin
+David Geldreich
+Diego Elio Pettenò
+Diego Fernando Nieto
+Georgi Chorbadzhiyski
+Jon Stacey
+Jonathan Rosser
+Joris van Rooij
+Kaloyan Kovachev
+Katsushi Kobayashi
+Kelly Anderson
+Loren Merritt
+Maciej Blizinski
+Mark Bidewell
+Miguel Angel Cabrera Moya
+Niles Bindel
+Samuel Pitoiset
+Scott Caudle
+Sean Robinson
+Sergey Radionov
+Simon Hailes
+Stephen Parry
+Sukrit Sangwan
+Thierry Reding
+Xavier Martin
+Alex Converse
+Alexander Bethke
+Alexandre Ratchov
+Andres Krapf
+Andrey Utkin
+Andri Pálsson
+Andy Chenee
+Anuradha Suraparaju
+Benjamin Poulain
+Brieuc Jeunhomme
+Chris Clayton
+Clément Lecigne
+Cédric Cocquebert
+Daniel Peng
+Danny Wood
+David K
+Edouard Gomez
+Emmanuel de Roux
+Frode Tennebø
+GBX
+Gaurav Narula
+Geraud CONTINSOUZAS
+Hugues Fruchet
+Jan Winter
+Jean-François Massol
+Jean-Philippe Grimaldi
+Josh Watzman
+Kai Lauterbach
+Konstantin Bogdanov
+Kuan-Chung Chiu
+Kuang Rufan
+Matthias Dahl
+Michael McEll
+Michael Ploujnikov
+Mike Schrag
+Nickolai Zeldovich
+Nicolas Bertrand
+Niklas Hayer
+Olafs Vandāns
+Olivier Gambier
+Paul Corke
+Ron Frederick
+Rov Juvano
+Sabourin Gilles
+Sam Lade
+Sandeep Kumar
+Sasha Koruga
+Sreng Jean
+Sven Petai
+Tomas Krotil
+Tomer Barletz
+Tristan Leteurtre
+Vittorio Giovara
+Wang Bo
+maxime Ripard
+xxcv
+Adam Hoka
+Adrian Knoth
+Adrien Cunin
+Alan Fischer
+Alan McCosh
+Alex Helfet
+Alexander Terentyev
+Alexandre Ferreira
+Alina Friedrichsen
+An L. Ber
+Andreas Schlick
+Andrew Schubert
+Andrey Makhnutin
+Arnaud Vallat
+Asad Mehmood
+Ashok Bhat
+Austin English
+Baptiste Coudurier
+Benoit Calvez
+Björn Stenberg
+Blake Livingston
+Brandon Brooks
+Brian Johnson
+Brian Kurle
+Cezar Elnazli
+Chris White
+Christian Masus
+Christoph Pfister
+Christoph Seibert
+Christopher Key
+Christopher Rath
+Claudio Ortelli
+Cody Russell
+Cristian Morales Vega
+Dan Rosenberg
+Daniel Marth
+Daniel Tisza
+Detlef Schroeder
+Diego Biurrun
+Dominik 'Rathann' Mierzejewski
+Duncan Salerno
+Edward Sheldrake
+Elliot Murphy
+Eren Inan Canpolat
+Ernest E. Teem III
+Etienne Membrives
+Fargier Sylvain
+Fathi Boudra
+Felix Geyer
+Filipe Azevedo
+Finn Hughes
+Florian Hubold
+Florian Roeske
+Frank Enderle
+Frédéric Crozat
+Georg Seifert
+Gertjan Van Droogenbroeck
+Gilles Chanteperdrix
+Greg Farrell
+Gregory Maxwell
+Gwenole Beauchesne
+Götz Waschk
+Hans-Kristian Arntzen
+Harry Sintonen
+Iain Wade
+Ibraheem Paredath
+Isamu Arimoto
+Ismael Luceno
+James Bates
+James Bond
+James Turner
+Janne Grunau
+Janne Kujanpää
+Jarmo Torvinen
+Jason Scheunemann
+Jeff Lu
+Jeroen Ost
+Joe Taber
+Johann Ransay
+Johannes Weißl
+John Hendrikx
+John Stebbins
+Jonas Gehring
+Joseph S. Atkinson
+Juergen Lock
+Julien 'Lta' BALLET
+Julien / Gellule
+Julien Humbert
+Kamil Baldyga
+Kamil Klimek
+Karlheinz Wohlmuth
+Kevin Anthony
+Kevin DuBois
+Lari Natri
+Lorenzo Pistone
+Lucas C. Villa Real
+Lukáš Lalinský
+Mal Graty
+Malte Tancred
+Martin Pöhlmann
+Martin Zeman
+Marton Balint
+Mathew King
+Mathieu Sonet
+Matthew A. Townsend
+Matthias Bauer
+Mika Tiainen
+Mike Cardillo
+Mounir Lamouri (volkmar)
+Natanael Copa
+Nathan Phillip Brink
+Nick Briggs
+Nick Pope
+Nil Geiswiller
+Pascal Thomet
+Pere Orga
+Peter Bak Nielsen
+Phil Roffe and David Grellscheid
+Philip Sequeira
+Pierre Souchay
+Piotr Fusik
+Pádraig Brady
+R.M
+Ralph Giles
+Ramon Gabarró
+Robert Forsman
+Robert Jedrzejczyk
+Robert Paciorek
+Rolf Ahrenberg
+Roman Pen
+Ruud Althuizen
+Samuli Suominen
+Scott Lyons
+Sebastian Birk
+Sergey Puzanov
+Sergio Ammirata
+Sharad Dixit
+Song Ye Wen
+Stephan Krempel
+Steven Kramer
+Steven Sheehy
+Sveinung Kvilhaugsvik
+Sylvain Cadhillac
+Sylver Bruneau
+Takahito HIRANO
+Theron Lewis
+Thijs Alkemade
+Tillmann Karras
+Timo Paulssen
+Timo Rothenpieler
+Tobias Rapp
+Tomasen
+Tony Vankrunkelsven
+Tristan Heaven
+Varphone Wong
+Vasily Fomin
+Vikram Narayanan
+Yannick Bréhon
+Yavor Doganov
+Yohann Martineau
+dharani.prabhu.s
+suheaven
+wucan
+김정은
+Adam Sampson
+Alexander Gall
+Alex Antropoff
+Alexis Guillard
+Alex Izvorski
+Amir Gouini
+Andrea Guzzo
+Andrew Flintham
+Andrew Zaikin
+Andy Lindsay
+Arai/Fujisawa Tooru
+Arkadiusz Miskiewicz
+Arnaud Gomes-do-Vale
+Arwed v. Merkatz
+Barak Ori
+Basil Achermann
+Benjamin Mironer
+Bill
+Bob Maguire
+Brian C. Wiles
+Brian Raymond
+Brian Robb
+Carsten Gottbehüt
+Carsten Haitzler
+Charles Hordis
+Chris Clepper
+Christian Henz
+Christof Baumgaertner
+Christophe Burgalat
+Christopher Johnson
+Cian Duffy
+Colin Simmonds
+Damian Ivereigh
+Daniel Fischer
+Daniel Stränger
+Danko Dolch
+Dennis Lou
+Dermot McGahon
+Diego Petteno
+Douglas West
+Dugal Harris
+Emmanuel Blindauer
+Enrico Gueli
+Enrique Osuna
+Eren Türkay
+Eric Dudiak
+Espen Skoglund
+Ethan C. Baldridge
+François Seingier
+Frans van Veen
+Frédéric Ruget
+Gerald Hansink
+Gisle Vanem
+Glen Gray
+Goetz Waschk
+Gregory Hazel
+Gustaf Neumann
+Hang Su
+Hans Lambermont
+Hans-Peter Jansen
+Harris Dugal
+Heiko Panther
+Igor Helman
+Isaac Osunkunle
+Jan David Mol
+Jan Gerber
+Jan Van Boghout
+Jasper Alias
+Jean-Alexis Montignies
+Jean-Baptiste Le Stang
+Jeffrey Baker
+Jeroen Massar
+Jérôme Guilbaud
+Johannes Buchner
+Johen Michael Zorko
+Johnathan Rosser
+John Dalgliesh
+John Paul Lorenti
+Jörg
+Joseph Tulou
+Julien Blache
+Julien Plissonneau Duquène
+Julien Robert
+Kenneth Ostby
+Kenneth Self
+Kevin H. Patterson
+Koehler, Vitally
+K. Staring
+Lahiru Lakmal Priyadarshana
+Laurent Mutricy
+Leo Spalteholz
+Loox Thefuture
+Marc Nolette
+Marco Munderloh
+Mark Gritter
+Markus Kern
+Markus Kuespert
+Martin Hamrle
+Martin Kahr
+Mateus Krepsky Ludwich
+Mathias Kretschmer
+Mats Rojestal
+Matthias P. Nowak
+Matthieu Lochegnies
+Michael Mondragon
+Michael S. Feurstein
+Michel Lanners
+Mickael Hoerdt
+Miguel Angel Cabrera
+Mikko Hirvonen
+Moritz Bunkus
+Nilmoni Deb
+Olivier Houchard
+Olivier Pomel
+Ondrej Kuda aka Albert
+Øyvind Kolbu
+Pascal Levesque
+Patrick Horn
+Patrick McLean
+Pauline Castets
+Paul Mackerras
+Peter Surda
+Petr Vacek
+Philippe Van Hecke
+Pierre-Luc Beaudoin
+Pierre Marc Dumuid
+Régis Duchesne
+Remco Poortinga
+Rene Gollent
+Rob Casey
+Robson Braga Araujo
+Roine Gustafsson
+Roman Bednarek
+Rudolf Cornelissen
+Sašo Kiselkov
+Sebastian Jenny
+Shane Harper
+Stefán Freyr Stefánsson
+Steve Brown
+Steven M. Schultz
+Tapio Hiltunen
+Thomas L. Wood
+Thomas Mühlgrabner
+Thomas Parmelan
+Tim 'O Callagha
+Tim Schuerewegen
+Tong Ka Man
+Torsten Spindler
+Udo Richter
+Vincent Dimar
+Vincent Penne
+Vitalijus Slavinskas
+Vitaly V. Bursov
+Vladimir Chernyshov
+Wade Majors
+Wallace Wadge
+Watanabe Go
+William Hawkins
+Xavier Maillard
+Ye zhang
+Yuehua Zhao
+  Licensed under the GNU Lesser General Public License, version 2.1 or later.
+
+mozilla/support/npunix.c:
+mozilla/support/npwin.cpp:
+  Copyright (c) 1998 Netscape Communications Corporation
+                     dp Suresh <dp at netscape.com>
+                     Stephen Mak <smak at sun.com>
+  Advertised as being under the Mozilla Public License, but effectively
+  under the MPL/GPL/LGPL triple license since the Mozilla relicensing,
+  hence used under the GNU General Public License, version 2 or later.
+
+Files in src/:
+  Copyright (c) 1996-2013 the VideoLAN Team
+  Licensed under the GNU Lesser General Public License, version 2.1 or later.
+
+The following files and folders:
+modules/gui/eject.c
+modules/gui/ncurses.c
+modules/gui/qt4
+modules/gui/macosx_dialog_provider
+modules/gui/skins2
+modules/gui/macosx
+modules/access/dtv
+modules/access/dvdnav.c
+modules/access/dvdread.c
+modules/access/dshow
+modules/access/vnc.c
+modules/access/v4l2/linux
+modules/access/rtsp
+modules/video_output/ios.m
+modules/control/hotkeys.c
+modules/control/lirc.c
+modules/control/gestures.c
+modules/control/rc.c
+modules/control/motionlib.h
+modules/control/dbus
+modules/control/globalhotkeys
+modules/control/dummy.c
+modules/control/netsync.c
+modules/control/motion.c
+modules/control/motionlib.c
+modules/control/ntservice.c
+modules/mmx/i420_rgb_mmx.h
+modules/audio_filter/channel_mixer
+modules/audio_filter/resampler/src.c
+modules/audio_filter/converter
+modules/visualization/visual
+modules/visualization/vsxu.cpp
+modules/visualization/goom.c
+modules/visualization/projectm.cpp
+modules/mux
+modules/mux/mpeg
+modules/codec/faad.c
+modules/codec/t140.c
+modules/codec/libmpeg2.c
+modules/codec/wmafixed
+modules/codec/x264.c
+modules/codec/shine
+modules/codec/dts.c
+modules/demux/real.c
+modules/demux/playlist
+modules/demux/sid.cpp
+modules/demux/mpc.c
+modules/lua
+modules/services_discovery
+modules/stream_out
+modules/access_output
+modules/video_filter
+modules/misc/audioscrobbler.c
+modules/misc/stats.c
+modules/misc/rtsp.c
+modules/misc/playlist
+modules/misc/logger.c
+modules/notify
+  Copyright (c) 1996-2013 the VideoLAN Team
+  Licensed under the GNU General Public License, version 2 or later.
+
+The following files and folders:
+modules/audio_output
+modules/gui/qt4/dialogs/fingerprintdialog.hpp
+modules/gui/qt4/dialogs/fingerprintdialog.cpp
+modules/gui/qt4/adapters/chromaprint.hpp
+modules/gui/qt4/adapters/chromaprint.cpp
+modules/gui/minimal_macosx
+modules/access/gnomevfs.c
+modules/access/smb.c
+modules/access/fs.c
+modules/access/eyetv.m
+modules/access/rar
+modules/access/attachment.c
+modules/access/rtp
+modules/access/dvb
+modules/access/bluray.c
+modules/access/live555.cpp
+modules/access/udp.c
+modules/access/file.c
+modules/access/fs.h
+modules/access/decklink.cpp
+modules/access/dtv
+modules/access/directory.c
+modules/access/screen
+modules/access/dvdnav.c
+modules/access/alsa.c
+modules/access/zip
+modules/access/linsys
+modules/access/qtsound.m
+modules/access/cdda.c
+modules/access/mtp.c
+modules/access/dvdread.c
+modules/access/timecode.c
+modules/access/oss.c
+modules/access/pulse.c
+modules/access/dc1394.c
+modules/access/tcp.c
+modules/access/qtcapture.m
+modules/access/idummy.c
+modules/access/sdp.c
+modules/access/dshow
+modules/access/vcdx
+modules/access/vnc.c
+modules/access/sftp.c
+modules/access/jack.c
+modules/access/imem.c
+modules/access/v4l2
+modules/access/avio.c
+modules/access/mms/mms.h
+modules/access/mms/mms.c
+modules/access/mms/mmsh.c
+modules/access/mms/asf.c
+modules/access/mms/buffer.c
+modules/access/mms/mmstu.h
+modules/access/mms/mmsh.h
+modules/access/mms/mmstu.c
+modules/access/mms/buffer.h
+modules/access/mms/asf.h
+modules/access/shm.c
+modules/access/avcapture.m
+modules/access/rdp.c
+modules/access/vdr.c
+modules/access/ftp.c
+modules/access/dv.c
+modules/access/avio.h
+modules/access/vcd
+modules/access/bd
+modules/access/http.c
+modules/video_output
+modules/arm_neon
+modules/text_renderer
+modules/audio_mixer
+modules/meta_engine
+modules/packetizer
+modules/audio_filter/spatializer/spatializer.cpp
+modules/audio_filter/normvol.c
+modules/audio_filter/chorus_flanger.c
+modules/audio_filter/compressor.c
+modules/audio_filter/channel_mixer/remap.c
+modules/audio_filter/channel_mixer/trivial.c
+modules/audio_filter/channel_mixer/simple.c
+modules/audio_filter/stereo_widen.c
+modules/audio_filter/resampler/bandlimited.c
+modules/audio_filter/resampler/bandlimited.h
+modules/audio_filter/resampler/src.c
+modules/audio_filter/resampler/speex.c
+modules/audio_filter/resampler/ugly.c
+modules/audio_filter/gain.c
+modules/audio_filter/scaletempo.c
+modules/audio_filter/equalizer_presets.h
+modules/audio_filter/equalizer.c
+modules/audio_filter/audiobargraph_a.c
+modules/audio_filter/converter/a52tofloat32.c
+modules/audio_filter/converter/a52tospdif.c
+modules/audio_filter/converter/mpgatofixed32.c
+modules/audio_filter/converter/dtstofloat32.c
+modules/audio_filter/converter/format.c
+modules/audio_filter/param_eq.c
+modules/audio_filter/karaoke.c
+modules/visualization/cyclic_buffer.h
+modules/mux/mpeg/dvbpsi_compat.h
+modules/codec/opus.c
+modules/codec/g711.c
+modules/codec/crystalhd.c
+modules/codec/sdl_image.c
+modules/codec/dts_header.c
+modules/codec/faad.c
+modules/codec/libass.c
+modules/codec/uleaddvaudio.c
+modules/codec/theora.c
+modules/codec/cc.h
+modules/codec/mash.cpp
+modules/codec/qsv.c
+modules/codec/a52.c
+modules/codec/schroedinger.c
+modules/codec/twolame.c
+modules/codec/a52.h
+modules/codec/stl.c
+modules/codec/adpcm.c
+modules/codec/fluidsynth.c
+modules/codec/libmpeg2.c
+modules/codec/flac.c
+modules/codec/speex.c
+modules/codec/dts_header.h
+modules/codec/zvbi.c
+modules/codec/spudec/spudec.c
+modules/codec/spudec/spudec.h
+modules/codec/spudec/parse.c
+modules/codec/scte27.c
+modules/codec/wmafixed/asf.h
+modules/codec/wmafixed/wma.c
+modules/codec/mpeg_audio.c
+modules/codec/xwd.c
+modules/codec/cc.c
+modules/codec/quicktime.c
+modules/codec/dirac.c
+modules/codec/telx.c
+modules/codec/aes3.c
+modules/codec/lpcm.c
+modules/codec/png.c
+modules/codec/svcdsub.c
+modules/codec/subsdec.c
+modules/codec/shine/shine_mod.c
+modules/codec/dvbsub.c
+modules/codec/subsusf.c
+modules/codec/ddummy.c
+modules/codec/omxil
+modules/codec/dmo
+modules/codec/araw.c
+modules/codec/edummy.c
+modules/codec/cvdsub.c
+modules/codec/avcodec
+modules/codec/rawvideo.c
+modules/codec/kate.c
+modules/codec/h264_nal.h
+modules/codec/vorbis.c
+modules/codec/cdg.c
+modules/sse2/i420_rgb_sse2.h
+modules/demux/rawdv.c
+modules/demux/avformat
+modules/demux/nuv.c
+modules/demux/tta.c
+modules/demux/voc.c
+modules/demux/nsc.c
+modules/demux/ps.h
+modules/demux/ogg.h
+modules/demux/ps.c
+modules/demux/dvb-text.h
+modules/demux/rawdv.h
+modules/demux/avi/avi.c
+modules/demux/avi/libavi.h
+modules/demux/avi/libavi.c
+modules/demux/xa.c
+modules/demux/smf.c
+modules/demux/stl.c
+modules/demux/asf/asf.c
+modules/demux/asf/libasf_guid.h
+modules/demux/asf/libasf.c
+modules/demux/asf/libasf.h
+modules/demux/xiph.h
+modules/demux/mjpeg.c
+modules/demux/flac.c
+modules/demux/mod.c
+modules/demux/xiph_metadata.c
+modules/demux/vobsub.h
+modules/demux/rawaud.c
+modules/demux/mkv
+modules/demux/playlist
+modules/demux/vc1.c
+modules/demux/sid.cpp
+modules/demux/ts.c
+modules/demux/wav.c
+modules/demux/gme.c
+modules/demux/ogg.c
+modules/demux/dirac.c
+modules/demux/oggseek.h
+modules/demux/demuxdump.c
+modules/demux/mp4
+modules/demux/pva.c
+modules/demux/aiff.c
+modules/demux/mpeg/mpgv.c
+modules/demux/mpeg/es.c
+modules/demux/mpeg/h264.c
+modules/demux/xiph_metadata.h
+modules/demux/nsv.c
+modules/demux/mxpeg_helper.h
+modules/demux/rawvid.c
+modules/demux/oggseek.c
+modules/demux/vobsub.c
+modules/demux/ty.c
+modules/demux/image.c
+modules/demux/au.c
+modules/demux/subtitle.c
+modules/demux/cdg.c
+modules/services_discovery
+modules/stream_out
+modules/video_chroma
+modules/access_output/livehttp.c
+modules/video_filter/alphamask.c
+modules/video_filter/puzzle.c
+modules/video_filter/puzzle_pce.h
+modules/video_filter/puzzle_pce.c
+modules/video_filter/puzzle.h
+modules/video_filter/panoramix.c
+modules/video_filter/anaglyph.c
+modules/video_filter/colorthres.c
+modules/video_filter/gradfun.c
+modules/video_filter/croppadd.c
+modules/video_filter/puzzle_lib.c
+modules/video_filter/gradient.c
+modules/video_filter/extract.c
+modules/video_filter/canvas.c
+modules/video_filter/opencv_wrapper.c
+modules/video_filter/gaussianblur.c
+modules/video_filter/swscale.c
+modules/video_filter/postproc.c
+modules/video_filter/audiobargraph_v.c
+modules/video_filter/grain.c
+modules/video_filter/sepia.c
+modules/video_filter/filter_picture.h
+modules/video_filter/puzzle_bezier.c
+modules/video_filter/subsdelay.c
+modules/video_filter/mosaic.c
+modules/video_filter/marq.c
+modules/video_filter/hqdn3d.c
+modules/video_filter/blendbench.c
+modules/video_filter/posterize.c
+modules/video_filter/yuvp.c
+modules/video_filter/antiflicker.c
+modules/video_filter/adjust_sat_hue.c
+modules/video_filter/magnify.c
+modules/video_filter/opencv_example.cpp
+modules/video_filter/puzzle_lib.h
+modules/video_filter/puzzle_bezier.h
+modules/video_filter/logo.c
+modules/video_filter/adjust_sat_hue.h
+modules/video_filter/blend.cpp
+modules/video_filter/mosaic.h
+modules/video_filter/wave.c
+modules/video_filter/clone.c
+modules/video_filter/atmo/FnordlichtConnection.h
+modules/video_filter/atmo/atmo.cpp
+modules/video_filter/atmo/FnordlichtConnection.cpp
+modules/video_filter/scene.c
+modules/video_filter/wall.c
+modules/video_filter/adjust.c
+modules/video_filter/motiondetect.c
+modules/video_filter/motionblur.c
+modules/video_filter/erase.c
+modules/video_filter/scale.c
+modules/video_filter/puzzle_mgt.c
+modules/video_filter/mirror.c
+modules/video_filter/deinterlace/mmx.h
+modules/video_filter/deinterlace/algo_phosphor.c
+modules/video_filter/deinterlace/algo_yadif.h
+modules/video_filter/deinterlace/merge_arm.S
+modules/video_filter/deinterlace/algo_ivtc.h
+modules/video_filter/deinterlace/algo_x.c
+modules/video_filter/deinterlace/merge.c
+modules/video_filter/deinterlace/deinterlace.c
+modules/video_filter/deinterlace/merge.h
+modules/video_filter/deinterlace/helpers.h
+modules/video_filter/deinterlace/deinterlace.h
+modules/video_filter/deinterlace/algo_basic.h
+modules/video_filter/deinterlace/algo_phosphor.h
+modules/video_filter/deinterlace/algo_x.h
+modules/video_filter/deinterlace/algo_ivtc.c
+modules/video_filter/deinterlace/algo_basic.c
+modules/video_filter/deinterlace/helpers.c
+modules/video_filter/deinterlace/common.h
+modules/video_filter/deinterlace/algo_yadif.c
+modules/video_filter/bluescreen.c
+modules/video_filter/remoteosd.c
+modules/video_filter/invert.c
+modules/video_filter/filter_event_info.h
+modules/video_filter/transform.c
+modules/video_filter/puzzle_mgt.h
+modules/video_filter/chain.c
+modules/video_filter/rss.c
+modules/video_filter/ball.c
+modules/video_filter/psychedelic.c
+modules/video_filter/dynamicoverlay
+modules/video_filter/ripple.c
+modules/video_filter/sharpen.c
+modules/misc/inhibit/dbus.c
+modules/misc/inhibit/xdg.c
+modules/misc/webservices/acoustid.c
+modules/misc/webservices/acoustid.h
+modules/misc/gnutls.c
+modules/misc/fingerprinter.c
+modules/misc/xml
+modules/stream_filter
+  Copyright (c) 1996-2013 the VideoLAN Team
+  Licensed under the GNU Lesser General Public License, version 2.1 or later.
+
+share/skins2/fonts/FreeSans.ttf:
+share/skins2/fonts/FreeSansBold.ttf:
+  Copyright (C) 2002 Free Software Foundation.
+                Primoz Peterlin <primoz.peterlin at biofiz.mf.uni-lj.si>
+  Licensed under the GNU General Public License, version 2 or later.
+
+Other files in share/skins2/:
+  Copyright (c) 2006 aLtgLasS <http://www.d-gfx.net.tc/>
+                1994-1996 Jos Buivenga <http://www.josbuivenga.demon.nl/>
+  Licensed under the Creative Commons Attribution 2.5 Scotland license
+
+2. License list
+===============
+
+The blurb for the GNU General Public License, version 2 or later:
+
+ | This program is free software; you can redistribute it and/or modify
+ | it under the terms of the GNU General Public License as published by
+ | the Free Software Foundation; either version 2, or (at your option)
+ | any later version.
+ |
+ |  This program is distributed in the hope that it will be useful,
+ | but WITHOUT ANY WARRANTY; without even the implied warranty of
+ | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ | General Public License for more details.
+ |
+ |  You should have received a copy of the GNU General Public License
+ | along with this program; if not, write to the Free Software
+ | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+The blurb for the GNU Lesser General Public Licence, version 2.1 or later:
+
+ | This program is free software; you can redistribute it and/or modify it
+ | under the terms of the GNU Lesser General Public License as published by
+ | the Free Software Foundation; either version 2.1 of the License, or
+ | (at your option) any later version.
+ |
+ |  This program is distributed in the hope that it will be useful,
+ | but WITHOUT ANY WARRANTY; without even the implied warranty of
+ | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ | General Public License for more details.
+ |
+ |  You should have received a copy of the GNU General Public License
+ | along with this program; if not, write to the Free Software
+ | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+However, this package is linked to LGPL v3 libraries. So while the source is
+GPL v2 or later, this package is GPL v3
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL-3'.
+
+The NetBSD license:
+
+ | Redistribution and use in source and binary forms, with or without
+ | modification, are permitted provided that the following conditions
+ | are met:
+ | 1. Redistributions of source code must retain the above copyright
+ |    notice, this list of conditions and the following disclaimer.
+ | 2. Redistributions in binary form must reproduce the above copyright
+ |    notice, this list of conditions and the following disclaimer in the
+ |    documentation and/or other materials provided with the distribution.
+ | 3. All advertising materials mentioning features or use of this software
+ |    must display the following acknowledgement:
+ |        This product includes software developed by the NetBSD
+ |        Foundation, Inc. and its contributors.
+ | 4. Neither the name of The NetBSD Foundation nor the names of its
+ |    contributors may be used to endorse or promote products derived
+ |    from this software without specific prior written permission.
+ |
+ | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ | POSSIBILITY OF SUCH DAMAGE.
+
+The Info-ZIP license:
+
+ | For the purposes of this copyright and license, "Info-ZIP" is defined as
+ | the following set of individuals:
+ |
+ |    Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,
+ |    Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth,
+ |    Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz,
+ |    David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko,
+ |    Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs,
+ |    Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda,
+ |    Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren,
+ |    Rich Wales, Mike White
+ |
+ | This software is provided "as is," without warranty of any kind, express
+ | or implied.  In no event shall Info-ZIP or its contributors be held liable
+ | for any direct, indirect, incidental, special or consequential damages
+ | arising out of the use of or inability to use this software.
+ |
+ | Permission is granted to anyone to use this software for any purpose,
+ | including commercial applications, and to alter it and redistribute it
+ | freely, subject to the following restrictions:
+ |
+ |  1. Redistributions of source code must retain the above copyright notice,
+ |     definition, disclaimer, and this list of conditions.
+ |
+ |  2. Redistributions in binary form (compiled executables) must reproduce
+ |     the above copyright notice, definition, disclaimer, and this list of
+ |     conditions in documentation and/or other materials provided with the
+ |     distribution.  The sole exception to this condition is redistribution
+ |     of a standard UnZipSFX binary (including SFXWiz) as part of a
+ |     self-extracting archive; that is permitted without inclusion of this
+ |     license, as long as the normal SFX banner has not been removed from
+ |     the binary or disabled.
+ |
+ |  3. Altered versions--including, but not limited to, ports to new operating
+ |     systems, existing ports with new graphical interfaces, and dynamic,
+ |     shared, or static library versions--must be plainly marked as such
+ |     and must not be misrepresented as being the original source.  Such
+ |     altered versions also must not be misrepresented as being Info-ZIP
+ |     releases--including, but not limited to, labeling of the altered
+ |     versions with the names "Info-ZIP" (or any variation thereof, including,
+ |     but not limited to, different capitalizations), "Pocket UnZip," "WiZ"
+ |     or "MacZip" without the explicit permission of Info-ZIP.  Such altered
+ |     versions are further prohibited from misrepresentative use of the
+ |     Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).
+ |
+ |  4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip,"
+ |     "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its
+ |     own source and binary releases.
+
+The Creative Commons Attribution 2.5 Scotland license:
+
+ |  This Creative Commons Scotland public licence enables You to Use the
+ |  Work worldwide provided that You keep to the terms of this Licence.
+ |
+ |  'The Licensor' (the Person offering the Work under the terms and
+ |  conditions of this Licence)
+ |
+ |  and
+ |
+ |  'You' (the Person acquiring rights under this Licence)
+ |
+ |  agree as follows:
+ |
+ |  1. Definitions of Capitalised Words
+ |    1. "Collective Work" means a work made up of the Work in its entirety
+ |       in unmodified form, along with other work, assembled into a
+ |       collective whole.
+ |    2. "Derivative Work" means a work that Uses the Work (or any
+ |       substantial part of the Work) in any material form whatsoever
+ |       (such as a translation, dramatisation, or abridgment), other than
+ |       (i) as a whole and in unmodified form or (ii) by modifying it as
+ |       may be technically necessary to Use it in a different mode or
+ |       format; but a Collective Work is not a Derivative Work for the
+ |       purpose of this Licence.
+ |    3. "Derogatory Treatment" means derogatory treatment as defined by
+ |       section 80 of the Copyright Design and Patents Act 1988, except as
+ |       allowed by that Act: and it has that meaning wherever that
+ |       treatment may take place and whoever may carry it out.
+ |    4. "Licence Elements" means the following licence attributes
+ |       indicated in the title of this Licence: Attribution.
+ |    5. "Original Author" means the Person who created the Work.
+ |    6. "Person" means a natural person or a body of persons corporate or
+ |       incorporate.
+ |    7. "Use", as a verb, means doing any act which is restricted by
+ |       copyright, whether in the original medium or any other; and
+ |       includes modifying the Work as may be technically necessary to Use
+ |       it in a different mode or format.
+ |    8. "Work" means the work protected by copyright which is offered
+ |       under the terms of this Licence, and includes the Work as
+ |       incorporated in any Collective Work.
+ |    9. Words in the singular include the plural and vice versa.
+ |
+ |  2. The Rights Granted
+ |
+ |  2.1 The Licensor grants to You a worldwide, royalty-free,
+ |  non-exclusive, licence to Use the Work for the duration of its
+ |  copyright.
+ |
+ |  So you may, for example:
+ |    1. copy the Work, or create Derivative Works or incorporate it into a
+ |       Collective Work;
+ |    2. copy Derivative Works, or the Work as incorporated in any
+ |       Collective Work; and
+ |    3. publish, perform or communicate the Work and/or Derivative Works
+ |       and/or the Work as incorporated in any Collective Work to anyone;
+ |
+ |  in any medium whether now known or created in the future.
+ |
+ |  2.2 However, this Licence does not allow you to:
+ |    1. impose any terms or any technological measures on the Work, or a
+ |       Derivative Work, that alter or restrict the terms of this Licence
+ |       or any rights granted under it or have the effect or intent of
+ |       restricting the ability of any person to exercise those rights;
+ |    2. sublicense the Work; or
+ |    3. subject the Work to Derogatory Treatment.
+ |
+ |  2.3 You must, if you publish or distribute the Work or any Derivative
+ |  Work to anyone else in any way, give reasonable credit to the Original
+ |  Author as follows:
+ |    1. by giving the name of the Original Author if that has been
+ |       supplied; or a pseudonym if that has been supplied instead; and/or
+ |       the name of any other person if that has been supplied for
+ |       attribution in place of the Original Author;
+ |    2. by giving the title of the Work if that has been supplied;
+ |    3. by giving the Uniform Resource Identifier of the Work if that has
+ |       been supplied, but you need not do so if this does not refer to
+ |       its copyright terms or to its licensing information;
+ |    4. in the case of a Derivative Work, by identifying how the Work has
+ |       been used (for example, "French translation of the Work by X", or
+ |       "Screenplay based on original work by X"); and
+ |    5. in the case of a Derivative Work or a Collective Work, placing
+ |       that credit in the same place, and at least as prominently, as any
+ |       comparable authorship credit.
+ |
+ |          But, if what you are publishing or distributing is a Derivative
+ |          Work or a Collective Work, you must remove any of these credits
+ |          if you are asked to do so by the Licensor and if it is
+ |          practicable to do so.
+ |
+ |  These are important conditions of this licence and if you fail to do
+ |  so you will be in material breach of its terms.
+ |
+ |  2.4 The Original Author asserts the right to be identified as the
+ |  original author of the Work; but only as and when required by clause
+ |  2.3 above.
+ |
+ |  2.5 You must also, if you publish or distribute the Work or any
+ |  Derivative Work to anyone else in any way:
+ |    1. include a copy of this Licence (or its Uniform Resource
+ |       Identifier) with it; and
+ |    2. keep intact any copyright notices for the Work and notices that
+ |       refer to this Licence.
+ |
+ |  These are important conditions of this licence and if you fail to do
+ |  so you will be in material breach of its terms.
+ |
+ |  2.6 Each time You publish the Work or any Derivative Work to anyone
+ |  else in any way, the Licensor offers to the recipient a licence to the
+ |  Work on the same terms and conditions as this Licence.
+ |
+ |  2.7 And:
+ |    1. the right to release the Work under different terms, or to stop
+ |       distributing the Work, is reserved; and
+ |    2. all other rights not expressly granted by the Licensor are
+ |       reserved.
+ |
+ |  2.8 This Licence does not affect any rights that You or anyone else
+ |  may independently have under any applicable law (including fair
+ |  dealing, fair use, or any other legally recognised limitation or
+ |  exception to copyright infringement) to make any Use of this Work.
+ |
+ |  3. Warranties and Disclaimer
+ |
+ |  3.1 The Work is licensed by the Licensor "as is" and without any
+ |  warranty of any kind, either express or implied, whether of title, of
+ |  accuracy, of fitness for purpose, or otherwise.
+ |
+ |  4. Limit of Liability
+ |
+ |  4.1 Subject to any liability which may not be excluded or limited by
+ |  law, the Licensor shall not be liable for, and expressly excludes, all
+ |  liability for loss or damage however and whenever caused to anyone by
+ |  any Use under this Licence, whether by You or by anyone else, and
+ |  whether caused by any fault on the part of the Licensor or not. If
+ |  liability may not be excluded by law, it is limited to actual and
+ |  direct financial loss to the extent it is caused by proved negligence
+ |  on the part of the Licensor.
+ |
+ |  5. Termination
+ |
+ |  5.1 Any breach by You of the terms of this licence (for example, by
+ |  distributing the work licensed without attributing authorship as
+ |  appropriate) entitles the Licensor to terminate this Licence with
+ |  immediate effect and without notice to you. Persons who have received
+ |  the Work, Derivative Works, or Collective Works from You under this
+ |  Licence, however, will not have their licences terminated provided
+ |  their use is in full compliance with this Licence or a licence granted
+ |  under clause 2.6 of this Licence.
+ |
+ |  5.2 If You are not in breach of the terms of this licence, the
+ |  Licensor may not terminate your rights under it.
+ |
+ |  5.3 Unless terminated under clause 5.1, this Licence is granted to you
+ |  for the duration of copyright in the Work.
+ |
+ |  6. General
+ |
+ |  6.1 If any provision of this Licence is held to be invalid or
+ |  unenforceable, that shall not affect the validity or enforceability of
+ |  the remainder of the terms of this Licence.
+ |
+ |  6.2 This Licence is the entire agreement between the parties with
+ |  respect to the Work licensed here. It replaces any earlier
+ |  understandings, agreements or representations with respect to the Work
+ |  not specified here.
+ |
+ |  6.3 If You are in breach of the terms of this Licence (for example, by
+ |  distributing the work licensed without attributing authorship as
+ |  appropriate) you will not be entitled to rely on the terms of this
+ |  Licence or to complain of any breach by the Licensor.
+ |
+ |  6.4 Neither You, nor anyone else, may enforce any provision of this
+ |  Licence by specific implement or interdict.
+ |
+ |  6.5 This Licence is governed by the law of Scotland and the parties
+ |  accept the exclusive jurisdiction of the Courts of Scotland to decide
+ |  any action or claim directed against the Licensor.
+ |
+ |  6.6 If there is any dispute as to the meaning or effect of any
+ |  provision of this Licence, it must so far as possible be read and
+ |  given effect in a way that is compatible with the provisions of the
+ |  Creative Commons generic licence, version 2.5, which has the same
+ |  Licence Elements.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..1695316
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,7 @@
+[DEFAULT]
+debian-branch = master
+pristine-tar = True
+compression = xz
+
+[git-dch]
+meta = True
diff --git a/debian/libvlc-dev.install b/debian/libvlc-dev.install
new file mode 100644
index 0000000..33d8b2f
--- /dev/null
+++ b/debian/libvlc-dev.install
@@ -0,0 +1,3 @@
+usr/include/vlc/*.h
+usr/lib/libvlc.so
+usr/lib/pkgconfig/libvlc.pc
diff --git a/debian/libvlc-dev.links b/debian/libvlc-dev.links
new file mode 100644
index 0000000..0217aaf
--- /dev/null
+++ b/debian/libvlc-dev.links
@@ -0,0 +1,2 @@
+/usr/share/doc/libvlc5 /usr/share/doc/libvlc-dev
+/usr/share/bug/libvlc5 /usr/share/bug/libvlc-dev
diff --git a/debian/libvlc5.install b/debian/libvlc5.install
new file mode 100644
index 0000000..4aaafb6
--- /dev/null
+++ b/debian/libvlc5.install
@@ -0,0 +1 @@
+usr/lib/libvlc.so.*
diff --git a/debian/libvlc5.links b/debian/libvlc5.links
new file mode 100644
index 0000000..d43bfd2
--- /dev/null
+++ b/debian/libvlc5.links
@@ -0,0 +1,2 @@
+/usr/share/doc/libvlccore7 /usr/share/doc/libvlc5
+/usr/share/bug/libvlccore7 /usr/share/bug/libvlc5
diff --git a/debian/libvlc5.symbols b/debian/libvlc5.symbols
new file mode 100644
index 0000000..94ef7ab
--- /dev/null
+++ b/debian/libvlc5.symbols
@@ -0,0 +1,251 @@
+libvlc.so.5 libvlc5 #MINVER#
+ libvlc_add_intf at Base 1.1.0
+ libvlc_audio_filter_list_get at Base 2.0.0
+ libvlc_audio_get_channel at Base 1.1.0
+ libvlc_audio_get_delay at Base 1.1.1
+ libvlc_audio_get_mute at Base 1.1.0
+ libvlc_audio_get_track at Base 1.1.0
+ libvlc_audio_get_track_count at Base 1.1.0
+ libvlc_audio_get_track_description at Base 1.1.0
+ libvlc_audio_get_volume at Base 1.1.0
+ libvlc_audio_output_device_count at Base 1.1.0
+ libvlc_audio_output_device_id at Base 1.1.0
+ libvlc_audio_output_device_list_get at Base 2.1.0
+ libvlc_audio_output_device_list_release at Base 2.1.0
+ libvlc_audio_output_device_longname at Base 1.1.0
+ libvlc_audio_output_device_set at Base 1.1.0
+ libvlc_audio_output_get_device_type at Base 1.1.0
+ libvlc_audio_output_list_get at Base 1.1.0
+ libvlc_audio_output_list_release at Base 1.1.0
+ libvlc_audio_output_set at Base 1.1.0
+ libvlc_audio_output_set_device_type at Base 1.1.0
+ libvlc_audio_set_callbacks at Base 2.0.0
+ libvlc_audio_set_channel at Base 1.1.0
+ libvlc_audio_set_delay at Base 1.1.1
+ libvlc_audio_set_format at Base 2.0.0
+ libvlc_audio_set_format_callbacks at Base 2.0.0
+ libvlc_audio_set_mute at Base 1.1.0
+ libvlc_audio_set_track at Base 1.1.0
+ libvlc_audio_set_volume at Base 1.1.0
+ libvlc_audio_set_volume_callback at Base 2.0.0
+ libvlc_audio_toggle_mute at Base 1.1.0
+ libvlc_clearerr at Base 1.1.0
+ libvlc_clock at Base 2.0.0
+ libvlc_errmsg at Base 1.1.0
+ libvlc_event_attach at Base 1.1.0
+ libvlc_event_detach at Base 1.1.0
+ libvlc_event_type_name at Base 1.1.0
+ libvlc_free at Base 2.0.0
+ libvlc_get_changeset at Base 1.1.0
+ libvlc_get_compiler at Base 1.1.0
+ libvlc_get_fullscreen at Base 1.1.0
+ libvlc_get_log_verbosity at Base 1.1.0
+ libvlc_get_version at Base 1.1.0
+ libvlc_log_clear at Base 1.1.0
+ libvlc_log_close at Base 1.1.0
+ libvlc_log_count at Base 1.1.0
+ libvlc_log_get_context at Base 2.1.0
+ libvlc_log_get_iterator at Base 1.1.0
+ libvlc_log_get_object at Base 2.1.0
+ libvlc_log_iterator_free at Base 1.1.0
+ libvlc_log_iterator_has_next at Base 1.1.0
+ libvlc_log_iterator_next at Base 1.1.0
+ libvlc_log_open at Base 1.1.0
+ libvlc_log_set at Base 2.1.0
+ libvlc_log_set_file at Base 2.1.0
+ libvlc_log_unset at Base 2.1.0
+ libvlc_media_add_option at Base 1.1.0
+ libvlc_media_add_option_flag at Base 1.1.0
+ libvlc_media_discoverer_event_manager at Base 1.1.0
+ libvlc_media_discoverer_is_running at Base 1.1.0
+ libvlc_media_discoverer_localized_name at Base 1.1.0
+ libvlc_media_discoverer_media_list at Base 1.1.0
+ libvlc_media_discoverer_new_from_name at Base 1.1.0
+ libvlc_media_discoverer_release at Base 1.1.0
+ libvlc_media_duplicate at Base 1.1.0
+ libvlc_media_event_manager at Base 1.1.0
+ libvlc_media_get_duration at Base 1.1.0
+ libvlc_media_get_meta at Base 1.1.0
+ libvlc_media_get_mrl at Base 1.1.0
+ libvlc_media_get_state at Base 1.1.0
+ libvlc_media_get_stats at Base 1.1.0
+ libvlc_media_get_tracks_info at Base 1.1.0
+ libvlc_media_get_user_data at Base 1.1.0
+ libvlc_media_is_parsed at Base 1.1.0
+ libvlc_media_library_load at Base 1.1.0
+ libvlc_media_library_media_list at Base 1.1.0
+ libvlc_media_library_new at Base 1.1.0
+ libvlc_media_library_release at Base 1.1.0
+ libvlc_media_library_retain at Base 1.1.0
+ libvlc_media_list_add_media at Base 1.1.0
+ libvlc_media_list_count at Base 1.1.0
+ libvlc_media_list_event_manager at Base 1.1.0
+ libvlc_media_list_index_of_item at Base 1.1.0
+ libvlc_media_list_insert_media at Base 1.1.0
+ libvlc_media_list_is_readonly at Base 1.1.0
+ libvlc_media_list_item_at_index at Base 1.1.0
+ libvlc_media_list_lock at Base 1.1.0
+ libvlc_media_list_media at Base 1.1.0
+ libvlc_media_list_new at Base 1.1.0
+ libvlc_media_list_player_event_manager at Base 1.1.0
+ libvlc_media_list_player_get_state at Base 1.1.0
+ libvlc_media_list_player_is_playing at Base 1.1.0
+ libvlc_media_list_player_new at Base 1.1.0
+ libvlc_media_list_player_next at Base 1.1.0
+ libvlc_media_list_player_pause at Base 1.1.0
+ libvlc_media_list_player_play at Base 1.1.0
+ libvlc_media_list_player_play_item at Base 1.1.0
+ libvlc_media_list_player_play_item_at_index at Base 1.1.0
+ libvlc_media_list_player_previous at Base 1.1.0
+ libvlc_media_list_player_release at Base 1.1.0
+ libvlc_media_list_player_retain at Base 2.0.0
+ libvlc_media_list_player_set_media_list at Base 1.1.0
+ libvlc_media_list_player_set_media_player at Base 1.1.0
+ libvlc_media_list_player_set_playback_mode at Base 1.1.0
+ libvlc_media_list_player_stop at Base 1.1.0
+ libvlc_media_list_release at Base 1.1.0
+ libvlc_media_list_remove_index at Base 1.1.0
+ libvlc_media_list_retain at Base 1.1.0
+ libvlc_media_list_set_media at Base 1.1.0
+ libvlc_media_list_unlock at Base 1.1.0
+ libvlc_media_new_as_node at Base 1.1.0
+ libvlc_media_new_fd at Base 1.1.5
+ libvlc_media_new_location at Base 1.1.0
+ libvlc_media_new_path at Base 1.1.0
+ libvlc_media_parse at Base 1.1.0
+ libvlc_media_parse_async at Base 1.1.0
+ libvlc_media_player_can_pause at Base 1.1.0
+ libvlc_media_player_event_manager at Base 1.1.0
+ libvlc_media_player_get_agl at Base 1.1.0
+ libvlc_media_player_get_chapter at Base 1.1.0
+ libvlc_media_player_get_chapter_count at Base 1.1.0
+ libvlc_media_player_get_chapter_count_for_title at Base 1.1.0
+ libvlc_media_player_get_fps at Base 1.1.0
+ libvlc_media_player_get_hwnd at Base 1.1.0
+ libvlc_media_player_get_length at Base 1.1.0
+ libvlc_media_player_get_media at Base 1.1.0
+ libvlc_media_player_get_nsobject at Base 1.1.0
+ libvlc_media_player_get_position at Base 1.1.0
+ libvlc_media_player_get_rate at Base 1.1.0
+ libvlc_media_player_get_state at Base 1.1.0
+ libvlc_media_player_get_time at Base 1.1.0
+ libvlc_media_player_get_title at Base 1.1.0
+ libvlc_media_player_get_title_count at Base 1.1.0
+ libvlc_media_player_get_xwindow at Base 1.1.0
+ libvlc_media_player_has_vout at Base 1.1.0
+ libvlc_media_player_is_playing at Base 1.1.0
+ libvlc_media_player_is_seekable at Base 1.1.0
+ libvlc_media_player_navigate at Base 2.0.0
+ libvlc_media_player_new at Base 1.1.0
+ libvlc_media_player_new_from_media at Base 1.1.0
+ libvlc_media_player_next_chapter at Base 1.1.0
+ libvlc_media_player_next_frame at Base 1.1.0
+ libvlc_media_player_pause at Base 1.1.0
+ libvlc_media_player_play at Base 1.1.0
+ libvlc_media_player_previous_chapter at Base 1.1.0
+ libvlc_media_player_release at Base 1.1.0
+ libvlc_media_player_retain at Base 1.1.0
+ libvlc_media_player_set_agl at Base 1.1.0
+ libvlc_media_player_set_chapter at Base 1.1.0
+ libvlc_media_player_set_hwnd at Base 1.1.0
+ libvlc_media_player_set_media at Base 1.1.0
+ libvlc_media_player_set_nsobject at Base 1.1.0
+ libvlc_media_player_set_pause at Base 1.1.1
+ libvlc_media_player_set_position at Base 1.1.0
+ libvlc_media_player_set_rate at Base 1.1.0
+ libvlc_media_player_set_time at Base 1.1.0
+ libvlc_media_player_set_title at Base 1.1.0
+ libvlc_media_player_set_video_title_display at Base 2.1.0
+ libvlc_media_player_set_xwindow at Base 1.1.0
+ libvlc_media_player_stop at Base 1.1.0
+ libvlc_media_player_will_play at Base 1.1.0
+ libvlc_media_release at Base 1.1.0
+ libvlc_media_retain at Base 1.1.0
+ libvlc_media_save_meta at Base 1.1.0
+ libvlc_media_set_meta at Base 1.1.0
+ libvlc_media_set_user_data at Base 1.1.0
+ libvlc_media_subitems at Base 1.1.0
+ libvlc_media_tracks_get at Base 2.1.0
+ libvlc_media_tracks_release at Base 2.1.0
+ libvlc_module_description_list_release at Base 2.0.0
+ libvlc_new at Base 1.1.0
+ libvlc_playlist_play at Base 1.1.0
+ libvlc_printerr at Base 1.1.0
+ libvlc_release at Base 1.1.0
+ libvlc_retain at Base 1.1.0
+ libvlc_set_app_id at Base 2.1.0
+ libvlc_set_exit_handler at Base 2.0.0
+ libvlc_set_fullscreen at Base 1.1.0
+ libvlc_set_log_verbosity at Base 1.1.0
+ libvlc_set_user_agent at Base 1.1.1
+ libvlc_toggle_fullscreen at Base 1.1.0
+ libvlc_toggle_teletext at Base 1.1.0
+ libvlc_track_description_list_release at Base 2.0.0
+ libvlc_track_description_release at Base 1.1.0
+ libvlc_video_filter_list_get at Base 2.0.0
+ libvlc_video_get_adjust_float at Base 1.1.1
+ libvlc_video_get_adjust_int at Base 1.1.1
+ libvlc_video_get_aspect_ratio at Base 1.1.0
+ libvlc_video_get_chapter_description at Base 1.1.0
+ libvlc_video_get_crop_geometry at Base 1.1.0
+ libvlc_video_get_cursor at Base 1.1.0
+ libvlc_video_get_height at Base 1.1.0
+ libvlc_video_get_logo_int at Base 1.1.0
+ libvlc_video_get_marquee_int at Base 1.1.0
+ libvlc_video_get_marquee_string at Base 1.1.0
+ libvlc_video_get_scale at Base 1.1.0
+ libvlc_video_get_size at Base 1.1.0
+ libvlc_video_get_spu at Base 1.1.0
+ libvlc_video_get_spu_count at Base 1.1.0
+ libvlc_video_get_spu_delay at Base 2.0.0
+ libvlc_video_get_spu_description at Base 1.1.0
+ libvlc_video_get_teletext at Base 1.1.0
+ libvlc_video_get_title_description at Base 1.1.0
+ libvlc_video_get_track at Base 1.1.0
+ libvlc_video_get_track_count at Base 1.1.0
+ libvlc_video_get_track_description at Base 1.1.0
+ libvlc_video_get_width at Base 1.1.0
+ libvlc_video_set_adjust_float at Base 1.1.1
+ libvlc_video_set_adjust_int at Base 1.1.1
+ libvlc_video_set_aspect_ratio at Base 1.1.0
+ libvlc_video_set_callbacks at Base 1.1.1
+ libvlc_video_set_crop_geometry at Base 1.1.0
+ libvlc_video_set_deinterlace at Base 1.1.0
+ libvlc_video_set_format at Base 1.1.1
+ libvlc_video_set_format_callbacks at Base 2.0.0
+ libvlc_video_set_key_input at Base 1.1.0
+ libvlc_video_set_logo_int at Base 1.1.0
+ libvlc_video_set_logo_string at Base 1.1.0
+ libvlc_video_set_marquee_int at Base 1.1.0
+ libvlc_video_set_marquee_string at Base 1.1.0
+ libvlc_video_set_mouse_input at Base 1.1.0
+ libvlc_video_set_scale at Base 1.1.0
+ libvlc_video_set_spu at Base 1.1.0
+ libvlc_video_set_spu_delay at Base 2.0.0
+ libvlc_video_set_subtitle_file at Base 1.1.0
+ libvlc_video_set_teletext at Base 1.1.0
+ libvlc_video_set_track at Base 1.1.0
+ libvlc_video_take_snapshot at Base 1.1.0
+ libvlc_vlm_add_broadcast at Base 1.1.0
+ libvlc_vlm_add_input at Base 1.1.0
+ libvlc_vlm_add_vod at Base 1.1.0
+ libvlc_vlm_change_media at Base 1.1.0
+ libvlc_vlm_del_media at Base 1.1.0
+ libvlc_vlm_get_event_manager at Base 1.1.0
+ libvlc_vlm_get_media_instance_length at Base 1.1.0
+ libvlc_vlm_get_media_instance_position at Base 1.1.0
+ libvlc_vlm_get_media_instance_rate at Base 1.1.0
+ libvlc_vlm_get_media_instance_time at Base 1.1.0
+ libvlc_vlm_pause_media at Base 1.1.0
+ libvlc_vlm_play_media at Base 1.1.0
+ libvlc_vlm_release at Base 1.1.0
+ libvlc_vlm_seek_media at Base 1.1.0
+ libvlc_vlm_set_enabled at Base 1.1.0
+ libvlc_vlm_set_input at Base 1.1.0
+ libvlc_vlm_set_loop at Base 1.1.0
+ libvlc_vlm_set_mux at Base 1.1.0
+ libvlc_vlm_set_output at Base 1.1.0
+ libvlc_vlm_show_media at Base 1.1.0
+ libvlc_vlm_stop_media at Base 1.1.0
+ libvlc_vprinterr at Base 1.1.0
+ libvlc_wait at Base 1.1.0
diff --git a/debian/libvlccore-dev.install b/debian/libvlccore-dev.install
new file mode 100644
index 0000000..f8ef3bb
--- /dev/null
+++ b/debian/libvlccore-dev.install
@@ -0,0 +1,4 @@
+usr/include/vlc/plugins/*.h
+usr/lib/libvlccore.so
+usr/lib/pkgconfig/vlc-plugin.pc
+usr/lib/vlc/libcompat.a
diff --git a/debian/libvlccore-dev.links b/debian/libvlccore-dev.links
new file mode 100644
index 0000000..27a72ac
--- /dev/null
+++ b/debian/libvlccore-dev.links
@@ -0,0 +1,2 @@
+/usr/share/doc/libvlccore7 /usr/share/doc/libvlccore-dev
+/usr/share/bug/libvlccore7 /usr/share/bug/libvlccore-dev
diff --git a/debian/libvlccore7.bug-control b/debian/libvlccore7.bug-control
new file mode 100644
index 0000000..1159d9c
--- /dev/null
+++ b/debian/libvlccore7.bug-control
@@ -0,0 +1,2 @@
+report-with: vlc vlc-nox libvlc5 libvlccore7
+package-status: libavutil50 libavutil51
diff --git a/debian/libvlccore7.bug-presubj b/debian/libvlccore7.bug-presubj
new file mode 100644
index 0000000..3f7fbc1
--- /dev/null
+++ b/debian/libvlccore7.bug-presubj
@@ -0,0 +1,19 @@
+Debugging and bug reporting advices:
+
+VLC media player is highly modular. So in case a feature is not working
+at all, you need to check that the module handling it is present.
+
+
+ * Use "rm ~/.cache/vlc/plugins-*.dat" to remove your plugins cache.
+
+ * Check that modules are correctly loaded: "vlc -vvv --color --list"
+   If you have yellow warning lines at the top, that could well be the
+   problem
+
+ * If you have installed libraries from other repositories (e.g. to use
+   allegedly patent-encumbred encoders), revert to the official Debian
+   libraries before reporting a bug.
+
+The debug log of vlc ("vlc -vvv <your usual options>") is very useful for
+the developers, do include it in your report.
+
diff --git a/debian/libvlccore7.install b/debian/libvlccore7.install
new file mode 100644
index 0000000..2c18f04
--- /dev/null
+++ b/debian/libvlccore7.install
@@ -0,0 +1 @@
+usr/lib/libvlccore.so.*
diff --git a/debian/libvlccore7.links b/debian/libvlccore7.links
new file mode 100644
index 0000000..dc36aa4
--- /dev/null
+++ b/debian/libvlccore7.links
@@ -0,0 +1 @@
+/usr/share/doc/vlc-data /usr/share/doc/libvlccore7
diff --git a/debian/libvlccore7.symbols b/debian/libvlccore7.symbols
new file mode 100644
index 0000000..b5e5a92
--- /dev/null
+++ b/debian/libvlccore7.symbols
@@ -0,0 +1,639 @@
+libvlccore.so.7 libvlccore7 #MINVER#
+ AddMD5 at Base 2.0.0
+ EndMD5 at Base 2.0.0
+ EnsureUTF8 at Base 2.0.0
+ FromCharset at Base 2.0.0
+ GetLang_1 at Base 2.0.0
+ GetLang_2B at Base 2.0.0
+ GetLang_2T at Base 2.0.0
+ InitMD5 at Base 2.0.0
+ IsUTF8 at Base 2.0.0
+ NTPtime64 at Base 2.0.0
+ ToCharset at Base 2.0.0
+ VLC_CompileBy at Base 2.0.0
+ VLC_CompileHost at Base 2.0.0
+ VLC_Compiler at Base 2.0.0
+ access_GetParentInput at Base 2.0.0
+ aout_BitsPerSample at Base 2.0.0
+ aout_ChannelExtract at Base 2.0.0
+ aout_ChannelReorder at Base 2.0.0
+ aout_CheckChannelExtraction at Base 2.0.0
+ aout_CheckChannelReorder at Base 2.0.0
+ aout_Deinterleave at Base 2.1.0
+ aout_DeviceGet at Base 2.1.0
+ aout_DeviceSet at Base 2.1.0
+ aout_DevicesList at Base 2.1.0
+ aout_FiltersAdjustResampling at Base 2.1.0
+ aout_FiltersDelete at Base 2.1.0
+ aout_FiltersNew at Base 2.1.0
+ aout_FiltersPlay at Base 2.1.0
+ aout_FormatPrepare at Base 2.0.0
+ aout_FormatPrint at Base 2.0.0
+ aout_FormatPrintChannels at Base 2.0.0
+ aout_Interleave at Base 2.1.0
+ aout_MuteGet at Base 2.1.0
+ aout_MuteSet at Base 2.1.0
+ aout_VolumeGet at Base 2.0.0
+ aout_VolumeSet at Base 2.0.0
+ aout_filter_RequestVout at Base 2.0.0
+ block_Alloc at Base 2.0.0
+ block_FifoCount at Base 2.0.0
+ block_FifoEmpty at Base 2.0.0
+ block_FifoGet at Base 2.0.0
+ block_FifoNew at Base 2.0.0
+ block_FifoPace at Base 2.0.0
+ block_FifoPut at Base 2.0.0
+ block_FifoRelease at Base 2.0.0
+ block_FifoShow at Base 2.0.0
+ block_File at Base 2.0.0
+ block_FilePath at Base 2.1.0
+ block_Init at Base 2.0.0
+ block_Realloc at Base 2.0.0
+ block_heap_Alloc at Base 2.0.0
+ block_mmap_Alloc at Base 2.0.0
+ block_shm_Alloc at Base 2.1.0
+ config_AddIntf at Base 2.0.0
+ config_ChainCreate at Base 2.0.0
+ config_ChainDestroy at Base 2.0.0
+ config_ChainDuplicate at Base 2.0.0
+ config_ChainParse at Base 2.0.0
+ config_ChainParseOptions at Base 2.1.0
+ config_ExistIntf at Base 2.0.0
+ config_FindConfig at Base 2.0.0
+ config_GetDataDir at Base 2.0.0
+ config_GetFloat at Base 2.0.0
+ config_GetInt at Base 2.0.0
+ config_GetIntChoices at Base 2.1.0
+ config_GetLibDir at Base 2.0.0
+ config_GetPsz at Base 2.0.0
+ config_GetPszChoices at Base 2.1.0
+ config_GetType at Base 2.0.0
+ config_GetUserDir at Base 2.0.0
+ config_PutFloat at Base 2.0.0
+ config_PutInt at Base 2.0.0
+ config_PutPsz at Base 2.0.0
+ config_RemoveIntf at Base 2.0.0
+ config_ResetAll at Base 2.0.0
+ config_SaveConfigFile at Base 2.0.0
+ config_StringEscape at Base 2.0.0
+ config_StringUnescape at Base 2.0.0
+ convert_xml_special_chars at Base 2.0.0
+ date_Change at Base 2.0.0
+ date_Decrement at Base 2.0.0
+ date_Get at Base 2.0.0
+ date_Increment at Base 2.0.0
+ date_Init at Base 2.0.0
+ date_Move at Base 2.0.0
+ date_Set at Base 2.0.0
+ decode_URI at Base 2.0.0
+ decode_URI_duplicate at Base 2.0.0
+ decoder_DeletePicture at Base 2.0.0
+ decoder_DeleteSubpicture at Base 2.0.0
+ decoder_GetDisplayDate at Base 2.0.0
+ decoder_GetDisplayRate at Base 2.0.0
+ decoder_GetInputAttachments at Base 2.0.0
+ decoder_LinkPicture at Base 2.0.0
+ decoder_NewAudioBuffer at Base 2.0.0
+ decoder_NewPicture at Base 2.0.0
+ decoder_NewSubpicture at Base 2.0.0
+ decoder_SynchroChoose at Base 2.0.0
+ decoder_SynchroDate at Base 2.0.0
+ decoder_SynchroDecode at Base 2.0.0
+ decoder_SynchroEnd at Base 2.0.0
+ decoder_SynchroInit at Base 2.0.0
+ decoder_SynchroNewPicture at Base 2.0.0
+ decoder_SynchroRelease at Base 2.0.0
+ decoder_SynchroReset at Base 2.0.0
+ decoder_SynchroTrash at Base 2.0.0
+ decoder_UnlinkPicture at Base 2.0.0
+ demux_GetParentInput at Base 2.0.0
+ demux_PacketizerDestroy at Base 2.0.0
+ demux_PacketizerNew at Base 2.0.0
+ demux_vaControlHelper at Base 2.0.0
+ dialog_ExtensionUpdate at Base 2.0.0
+ dialog_Login at Base 2.0.0
+ dialog_ProgressCancelled at Base 2.0.0
+ dialog_ProgressCreate at Base 2.0.0
+ dialog_ProgressDestroy at Base 2.0.0
+ dialog_ProgressSet at Base 2.0.0
+ dialog_Question at Base 2.0.0
+ dialog_Register at Base 2.0.0
+ dialog_Unregister at Base 2.0.0
+ dialog_VFatal at Base 2.0.0
+ encode_URI_component at Base 2.0.0
+ es_format_Clean at Base 2.0.0
+ es_format_Copy at Base 2.0.0
+ es_format_Init at Base 2.0.0
+ es_format_InitFromVideo at Base 2.0.0
+ es_format_IsSimilar at Base 2.0.0
+ filename_sanitize at Base 2.0.0
+ filter_Blend at Base 2.0.0
+ filter_ConfigureBlend at Base 2.0.0
+ filter_DeleteBlend at Base 2.0.0
+ filter_NewBlend at Base 2.0.0
+ filter_chain_AppendFilter at Base 2.0.0
+ filter_chain_AppendFromString at Base 2.0.0
+ filter_chain_AudioFilter at Base 2.0.0
+ filter_chain_Delete at Base 2.0.0
+ filter_chain_DeleteFilter at Base 2.0.0
+ filter_chain_GetFmtOut at Base 2.0.0
+ filter_chain_GetLength at Base 2.0.0
+ filter_chain_MouseEvent at Base 2.0.0
+ filter_chain_MouseFilter at Base 2.0.0
+ filter_chain_New at Base 2.0.0
+ filter_chain_Reset at Base 2.0.0
+ filter_chain_SubFilter at Base 2.0.0
+ filter_chain_SubSource at Base 2.0.0
+ filter_chain_VideoFilter at Base 2.0.0
+ filter_chain_VideoFlush at Base 2.0.0
+ fingerprinter_Create at Base 2.1.0
+ fingerprinter_Destroy at Base 2.1.0
+ http_auth_FormatAuthorizationHeader at Base 2.0.0
+ http_auth_Init at Base 2.0.0
+ http_auth_ParseAuthenticationInfoHeader at Base 2.0.0
+ http_auth_ParseWwwAuthenticateHeader at Base 2.0.0
+ http_auth_Reset at Base 2.0.0
+ httpd_ClientIP at Base 2.0.0
+ httpd_FileDelete at Base 2.0.0
+ httpd_FileNew at Base 2.0.0
+ httpd_HandlerDelete at Base 2.0.0
+ httpd_HandlerNew at Base 2.0.0
+ httpd_HostDelete at Base 2.0.0
+ httpd_MsgAdd at Base 2.0.0
+ httpd_MsgGet at Base 2.0.0
+ httpd_RedirectDelete at Base 2.0.0
+ httpd_RedirectNew at Base 2.0.0
+ httpd_ServerIP at Base 2.0.0
+ httpd_StreamDelete at Base 2.0.0
+ httpd_StreamHeader at Base 2.0.0
+ httpd_StreamNew at Base 2.0.0
+ httpd_StreamSend at Base 2.0.0
+ httpd_UrlCatch at Base 2.0.0
+ httpd_UrlDelete at Base 2.0.0
+ httpd_UrlNew at Base 2.0.0
+ image_Ext2Fourcc at Base 2.0.0
+ image_HandlerCreate at Base 2.0.0
+ image_HandlerDelete at Base 2.0.0
+ image_Mime2Fourcc at Base 2.0.0
+ image_Type2Fourcc at Base 2.0.0
+ input_Close at Base 2.0.0
+ input_Control at Base 2.0.0
+ input_Create at Base 2.0.0
+ input_CreateAndStart at Base 2.0.0
+ input_CreateFilename at Base 2.0.0
+ input_DecoderCreate at Base 2.0.0
+ input_DecoderDecode at Base 2.0.0
+ input_DecoderDelete at Base 2.0.0
+ input_GetItem at Base 2.0.0
+ input_Read at Base 2.0.0
+ input_Start at Base 2.0.0
+ input_Stop at Base 2.0.0
+ input_item_AddInfo at Base 2.0.0
+ input_item_AddOption at Base 2.0.0
+ input_item_Copy at Base 2.0.0
+ input_item_CopyOptions at Base 2.0.0
+ input_item_DelInfo at Base 2.0.0
+ input_item_GetDuration at Base 2.0.0
+ input_item_GetInfo at Base 2.0.0
+ input_item_GetMeta at Base 2.0.0
+ input_item_GetName at Base 2.0.0
+ input_item_GetTitleFbName at Base 2.0.0
+ input_item_GetURI at Base 2.0.0
+ input_item_HasErrorWhenReading at Base 2.0.0
+ input_item_Hold at Base 2.1.0
+ input_item_IsArtFetched at Base 2.0.0
+ input_item_IsPreparsed at Base 2.0.0
+ input_item_MergeInfos at Base 2.0.0
+ input_item_MetaMatch at Base 2.0.0
+ input_item_NewExt at Base 2.0.0
+ input_item_NewWithType at Base 2.0.0
+ input_item_PostSubItem at Base 2.0.0
+ input_item_Release at Base 2.1.0
+ input_item_ReplaceInfos at Base 2.0.0
+ input_item_SetDuration at Base 2.0.0
+ input_item_SetMeta at Base 2.0.0
+ input_item_SetName at Base 2.0.0
+ input_item_SetURI at Base 2.0.0
+ input_item_WriteMeta at Base 2.0.0
+ input_item_node_AppendItem at Base 2.0.0
+ input_item_node_AppendNode at Base 2.0.0
+ input_item_node_Create at Base 2.0.0
+ input_item_node_Delete at Base 2.0.0
+ input_item_node_PostAndDelete at Base 2.0.0
+ input_resource_HoldAout at Base 2.1.0
+ input_resource_New at Base 2.0.0
+ input_resource_Release at Base 2.0.0
+ input_resource_Terminate at Base 2.0.0
+ input_resource_TerminateVout at Base 2.0.0
+ input_vaControl at Base 2.0.0
+ intf_Create at Base 2.0.0
+ libvlc_InternalAddIntf at Base 2.0.0
+ libvlc_InternalCleanup at Base 2.0.0
+ libvlc_InternalCreate at Base 2.0.0
+ libvlc_InternalDestroy at Base 2.0.0
+ libvlc_InternalInit at Base 2.0.0
+ libvlc_Quit at Base 2.0.0
+ libvlc_SetExitHandler at Base 2.0.0
+ make_path at Base 2.0.0
+ mdate at Base 2.0.0
+ module_config_free at Base 2.0.0
+ module_config_get at Base 2.0.0
+ module_exists at Base 2.0.0
+ module_find at Base 2.0.0
+ module_get_capability at Base 2.0.0
+ module_get_help at Base 2.0.0
+ module_get_name at Base 2.0.0
+ module_get_object at Base 2.0.0
+ module_get_score at Base 2.0.0
+ module_gettext at Base 2.0.0
+ module_list_free at Base 2.0.0
+ module_list_get at Base 2.0.0
+ module_need at Base 2.0.0
+ module_provides at Base 2.0.0
+ module_unneed at Base 2.0.0
+ msleep at Base 2.0.0
+ mstrtime at Base 2.0.0
+ mwait at Base 2.0.0
+ net_Accept at Base 2.0.0
+ net_AcceptSingle at Base 2.0.0
+ net_Connect at Base 2.0.0
+ net_ConnectDgram at Base 2.0.0
+ net_Gets at Base 2.0.0
+ net_Listen at Base 2.0.0
+ net_ListenClose at Base 2.0.0
+ net_OpenDgram at Base 2.0.0
+ net_Printf at Base 2.0.0
+ net_Read at Base 2.0.0
+ net_SetCSCov at Base 2.0.0
+ net_Write at Base 2.0.0
+ net_vaPrintf at Base 2.0.0
+ path_sanitize at Base 2.0.0
+ picture_BlendSubpicture at Base 2.0.0
+ picture_Copy at Base 2.1.0
+ picture_CopyPixels at Base 2.0.0
+ picture_CopyProperties at Base 2.1.0
+ picture_Export at Base 2.0.0
+ picture_Hold at Base 2.1.0
+ picture_IsReferenced at Base 2.1.0
+ picture_New at Base 2.0.0
+ picture_NewFromFormat at Base 2.0.0
+ picture_NewFromResource at Base 2.0.0
+ picture_Release at Base 2.1.0
+ picture_Reset at Base 2.0.0
+ picture_Setup at Base 2.0.0
+ picture_fifo_Delete at Base 2.0.0
+ picture_fifo_Flush at Base 2.0.0
+ picture_fifo_New at Base 2.0.0
+ picture_fifo_OffsetDate at Base 2.0.0
+ picture_fifo_Peek at Base 2.0.0
+ picture_fifo_Pop at Base 2.0.0
+ picture_fifo_Push at Base 2.0.0
+ picture_pool_Delete at Base 2.0.0
+ picture_pool_Get at Base 2.0.0
+ picture_pool_GetSize at Base 2.0.0
+ picture_pool_New at Base 2.0.0
+ picture_pool_NewExtended at Base 2.0.0
+ picture_pool_NewFromFormat at Base 2.0.0
+ picture_pool_NonEmpty at Base 2.0.0
+ picture_pool_Reserve at Base 2.0.0
+ pl_Get at Base 2.0.0
+ plane_CopyPixels at Base 2.0.0
+ playlist_Add at Base 2.0.0
+ playlist_AddExt at Base 2.0.0
+ playlist_AddInput at Base 2.0.0
+ playlist_AskForArtEnqueue at Base 2.0.0
+ playlist_AssertLocked at Base 2.0.0
+ playlist_ChildSearchName at Base 2.0.0
+ playlist_Clear at Base 2.0.0
+ playlist_Control at Base 2.0.0
+ playlist_CurrentInput at Base 2.0.0
+ playlist_CurrentPlayingItem at Base 2.0.0
+ playlist_Deactivate at Base 2.1.0
+ playlist_DeleteFromInput at Base 2.0.0
+ playlist_EnableAudioFilter at Base 2.1.0
+ playlist_Export at Base 2.0.0
+ playlist_GetAout at Base 2.1.0
+ playlist_GetNextLeaf at Base 2.0.0
+ playlist_GetNodeDuration at Base 2.1.0
+ playlist_GetPrevLeaf at Base 2.0.0
+ playlist_Import at Base 2.0.0
+ playlist_IsServicesDiscoveryLoaded at Base 2.0.0
+ playlist_ItemGetById at Base 2.0.0
+ playlist_ItemGetByInput at Base 2.0.0
+ playlist_LiveSearchUpdate at Base 2.0.0
+ playlist_Lock at Base 2.0.0
+ playlist_MuteGet at Base 2.1.0
+ playlist_MuteSet at Base 2.1.0
+ playlist_NodeAddCopy at Base 2.0.0
+ playlist_NodeAddInput at Base 2.0.0
+ playlist_NodeAppend at Base 2.0.0
+ playlist_NodeCreate at Base 2.0.0
+ playlist_NodeDelete at Base 2.0.0
+ playlist_NodeInsert at Base 2.0.0
+ playlist_NodeRemoveItem at Base 2.0.0
+ playlist_PreparseEnqueue at Base 2.0.0
+ playlist_RecursiveNodeSort at Base 2.0.0
+ playlist_ServicesDiscoveryAdd at Base 2.0.0
+ playlist_ServicesDiscoveryControl at Base 2.0.0
+ playlist_ServicesDiscoveryRemove at Base 2.0.0
+ playlist_Status at Base 2.0.0
+ playlist_TreeMove at Base 2.0.0
+ playlist_TreeMoveMany at Base 2.0.0
+ playlist_Unlock at Base 2.0.0
+ playlist_VolumeGet at Base 2.1.0
+ playlist_VolumeSet at Base 2.1.0
+ playlist_VolumeUp at Base 2.1.0
+ resolve_xml_special_chars at Base 2.0.0
+ sdp_AddAttribute at Base 2.0.0
+ sdp_AddMedia at Base 2.0.0
+ secstotimestr at Base 2.0.0
+ services_discovery_AddItem at Base 2.0.0
+ services_discovery_EventManager at Base 2.0.0
+ services_discovery_GetLocalizedName at Base 2.0.0
+ services_discovery_RemoveAll at Base 2.1.0
+ services_discovery_RemoveItem at Base 2.0.0
+ sout_AccessOutControl at Base 2.0.0
+ sout_AccessOutDelete at Base 2.0.0
+ sout_AccessOutNew at Base 2.0.0
+ sout_AccessOutRead at Base 2.0.0
+ sout_AccessOutSeek at Base 2.0.0
+ sout_AccessOutWrite at Base 2.0.0
+ sout_AnnounceRegisterSDP at Base 2.0.0
+ sout_AnnounceUnRegister at Base 2.0.0
+ sout_EncoderCreate at Base 2.0.0
+ sout_MuxAddStream at Base 2.0.0
+ sout_MuxDelete at Base 2.0.0
+ sout_MuxDeleteStream at Base 2.0.0
+ sout_MuxGetStream at Base 2.0.0
+ sout_MuxNew at Base 2.0.0
+ sout_MuxSendBuffer at Base 2.0.0
+ sout_StreamChainDelete at Base 2.0.0
+ sout_StreamChainNew at Base 2.0.0
+ spu_ChangeFilters at Base 2.0.0
+ spu_ChangeSources at Base 2.0.0
+ spu_ClearChannel at Base 2.0.0
+ spu_Create at Base 2.0.0
+ spu_Destroy at Base 2.0.0
+ spu_PutSubpicture at Base 2.0.0
+ spu_RegisterChannel at Base 2.0.0
+ spu_Render at Base 2.0.0
+ str_duration at Base 2.0.0
+ str_format_meta at Base 2.0.0
+ str_format_time at Base 2.0.0
+ stream_Block at Base 2.0.0
+ stream_BlockRemaining at Base 2.0.0
+ stream_Control at Base 2.0.0
+ stream_Delete at Base 2.0.0
+ stream_DemuxControlVa at Base 2.1.0
+ stream_DemuxNew at Base 2.0.0
+ stream_DemuxSend at Base 2.0.0
+ stream_FilterNew at Base 2.0.0
+ stream_MemoryNew at Base 2.0.0
+ stream_Peek at Base 2.0.0
+ stream_Read at Base 2.0.0
+ stream_ReadLine at Base 2.0.0
+ stream_UrlNew at Base 2.0.0
+ stream_vaControl at Base 2.0.0
+ subpicture_Delete at Base 2.0.0
+ subpicture_New at Base 2.0.0
+ subpicture_NewFromPicture at Base 2.0.0
+ subpicture_Update at Base 2.0.0
+ subpicture_region_ChainDelete at Base 2.0.0
+ subpicture_region_Delete at Base 2.0.0
+ subpicture_region_New at Base 2.0.0
+ text_style_Copy at Base 2.0.0
+ text_style_Delete at Base 2.0.0
+ text_style_Duplicate at Base 2.0.0
+ text_style_New at Base 2.0.0
+ update_Check at Base 2.0.0
+ update_Delete at Base 2.0.0
+ update_Download at Base 2.0.0
+ update_GetRelease at Base 2.0.0
+ update_NeedUpgrade at Base 2.0.0
+ update_New at Base 2.0.0
+ us_asprintf at Base 2.0.0
+ us_atof at Base 2.0.0
+ us_strtod at Base 2.0.0
+ us_strtof at Base 2.0.0
+ us_vasprintf at Base 2.0.0
+ utf8_fprintf at Base 2.0.0
+ utf8_vfprintf at Base 2.0.0
+ var_AddCallback at Base 2.0.0
+ var_Change at Base 2.0.0
+ var_Create at Base 2.0.0
+ var_DelCallback at Base 2.0.0
+ var_Destroy at Base 2.0.0
+ var_FreeList at Base 2.0.0
+ var_Get at Base 2.0.0
+ var_GetAndSet at Base 2.0.0
+ var_GetChecked at Base 2.0.0
+ var_Inherit at Base 2.0.0
+ var_InheritURational at Base 2.0.0
+ var_LocationParse at Base 2.0.0
+ var_Set at Base 2.0.0
+ var_SetChecked at Base 2.0.0
+ var_TriggerCallback at Base 2.0.0
+ var_Type at Base 2.0.0
+ video_format_CopyCrop at Base 2.0.0
+ video_format_FixRgb at Base 2.0.0
+ video_format_IsSimilar at Base 2.0.0
+ video_format_Print at Base 2.0.0
+ video_format_ScaleCropAr at Base 2.0.0
+ video_format_Setup at Base 2.0.0
+ video_splitter_Delete at Base 2.0.0
+ video_splitter_New at Base 2.0.0
+ vlc_CPU at Base 2.0.0
+ vlc_GetActionId at Base 2.0.0
+ vlc_GetCPUCount at Base 2.0.0
+ vlc_Log at Base 2.0.0
+ vlc_LogSet at Base 2.1.0
+ vlc_UrlClean at Base 2.1.0
+ vlc_UrlParse at Base 2.1.0
+ vlc_accept at Base 2.0.0
+ vlc_b64_decode at Base 2.0.0
+ vlc_b64_decode_binary at Base 2.0.0
+ vlc_b64_decode_binary_to_buffer at Base 2.0.0
+ vlc_b64_encode at Base 2.0.0
+ vlc_b64_encode_binary at Base 2.0.0
+ vlc_cancel at Base 2.0.0
+ vlc_clone at Base 2.0.0
+ vlc_cond_broadcast at Base 2.0.0
+ vlc_cond_destroy at Base 2.0.0
+ vlc_cond_init at Base 2.0.0
+ vlc_cond_init_daytime at Base 2.0.0
+ vlc_cond_signal at Base 2.0.0
+ vlc_cond_timedwait at Base 2.0.0
+ vlc_cond_wait at Base 2.0.0
+ vlc_control_cancel at Base 2.0.0
+ vlc_drand48 at Base 2.0.0
+ vlc_dup at Base 2.0.0
+ vlc_epg_AddEvent at Base 2.0.0
+ vlc_epg_Clean at Base 2.0.0
+ vlc_epg_Delete at Base 2.0.0
+ vlc_epg_Init at Base 2.0.0
+ vlc_epg_Merge at Base 2.0.0
+ vlc_epg_New at Base 2.0.0
+ vlc_epg_SetCurrent at Base 2.0.0
+ vlc_error at Base 2.0.0
+ vlc_event_attach at Base 2.0.0
+ vlc_event_detach at Base 2.0.0
+ vlc_event_manager_fini at Base 2.0.0
+ vlc_event_manager_init at Base 2.0.0
+ vlc_event_manager_register_event_type at Base 2.0.0
+ vlc_event_send at Base 2.0.0
+ vlc_fopen at Base 2.0.0
+ vlc_fourcc_AreUVPlanesSwapped at Base 2.0.0
+ vlc_fourcc_GetChromaDescription at Base 2.0.0
+ vlc_fourcc_GetCodec at Base 2.0.0
+ vlc_fourcc_GetCodecAudio at Base 2.0.0
+ vlc_fourcc_GetCodecFromString at Base 2.0.0
+ vlc_fourcc_GetDescription at Base 2.0.0
+ vlc_fourcc_GetRGBFallback at Base 2.0.0
+ vlc_fourcc_GetYUVFallback at Base 2.0.0
+ vlc_fourcc_IsYUV at Base 2.0.0
+ vlc_getProxyUrl at Base 2.1.0
+ vlc_getaddrinfo at Base 2.0.0
+ vlc_getcwd at Base 2.0.0
+ vlc_getnameinfo at Base 2.0.0
+ vlc_gettext at Base 2.0.0
+ vlc_gl_Create at Base 2.0.0
+ vlc_gl_Destroy at Base 2.0.0
+ vlc_global_mutex at Base 2.0.0
+ vlc_http_HostNew at Base 2.0.0
+ vlc_https_HostNew at Base 2.0.0
+ vlc_iconv at Base 2.0.0
+ vlc_iconv_close at Base 2.0.0
+ vlc_iconv_open at Base 2.0.0
+ vlc_join at Base 2.0.0
+ vlc_keycode2str at Base 2.0.0
+ vlc_list_children at Base 2.0.0
+ vlc_list_release at Base 2.0.0
+ vlc_loaddir at Base 2.0.0
+ vlc_lrand48 at Base 2.0.0
+ vlc_lstat at Base 2.0.0
+ vlc_meta_AddExtra at Base 2.0.0
+ vlc_meta_CopyExtraNames at Base 2.0.0
+ vlc_meta_Delete at Base 2.0.0
+ vlc_meta_Get at Base 2.0.0
+ vlc_meta_GetExtra at Base 2.0.0
+ vlc_meta_GetExtraCount at Base 2.0.0
+ vlc_meta_GetStatus at Base 2.0.0
+ vlc_meta_Merge at Base 2.0.0
+ vlc_meta_New at Base 2.0.0
+ vlc_meta_Set at Base 2.0.0
+ vlc_meta_SetStatus at Base 2.0.0
+ vlc_meta_TypeToLocalizedString at Base 2.0.0
+ vlc_mime_Ext2Mime at Base 2.1.0
+ vlc_mkdir at Base 2.0.0
+ vlc_mkstemp at Base 2.0.0
+ vlc_module_load at Base 2.0.0
+ vlc_module_unload at Base 2.0.0
+ vlc_mrand48 at Base 2.0.0
+ vlc_mutex_destroy at Base 2.0.0
+ vlc_mutex_init at Base 2.0.0
+ vlc_mutex_init_recursive at Base 2.0.0
+ vlc_mutex_lock at Base 2.0.0
+ vlc_mutex_trylock at Base 2.0.0
+ vlc_mutex_unlock at Base 2.0.0
+ vlc_ngettext at Base 2.1.0
+ vlc_object_alive at Base 2.1.0
+ vlc_object_create at Base 2.0.0
+ vlc_object_find_name at Base 2.0.0
+ vlc_object_get_name at Base 2.0.0
+ vlc_object_hold at Base 2.0.0
+ vlc_object_release at Base 2.0.0
+ vlc_open at Base 2.0.0
+ vlc_openat at Base 2.0.0
+ vlc_opendir at Base 2.0.0
+ vlc_path2uri at Base 2.1.0
+ vlc_pipe at Base 2.0.0
+ vlc_rand_bytes at Base 2.0.0
+ vlc_readdir at Base 2.0.0
+ vlc_rename at Base 2.0.0
+ vlc_restorecancel at Base 2.0.0
+ vlc_rtsp_HostNew at Base 2.0.0
+ vlc_rwlock_destroy at Base 2.0.0
+ vlc_rwlock_init at Base 2.0.0
+ vlc_rwlock_rdlock at Base 2.0.0
+ vlc_rwlock_unlock at Base 2.0.0
+ vlc_rwlock_wrlock at Base 2.0.0
+ vlc_savecancel at Base 2.0.0
+ vlc_scandir at Base 2.0.0
+ vlc_sd_Create at Base 2.0.0
+ vlc_sd_Destroy at Base 2.0.0
+ vlc_sd_GetNames at Base 2.0.0
+ vlc_sd_Start at Base 2.0.0
+ vlc_sd_Stop at Base 2.0.0
+ vlc_sd_probe_Add at Base 2.0.0
+ vlc_sdp_Start at Base 2.0.0
+ vlc_sem_destroy at Base 2.0.0
+ vlc_sem_init at Base 2.0.0
+ vlc_sem_post at Base 2.0.0
+ vlc_sem_wait at Base 2.0.0
+ vlc_socket at Base 2.0.2
+ vlc_stat at Base 2.0.0
+ vlc_str2keycode at Base 2.0.0
+ vlc_strcasestr at Base 2.0.0
+ vlc_testcancel at Base 2.0.0
+ vlc_threadvar_create at Base 2.0.0
+ vlc_threadvar_delete at Base 2.0.0
+ vlc_threadvar_get at Base 2.0.0
+ vlc_threadvar_set at Base 2.0.0
+ vlc_timer_create at Base 2.0.0
+ vlc_timer_destroy at Base 2.0.0
+ vlc_timer_getoverrun at Base 2.0.0
+ vlc_timer_schedule at Base 2.0.0
+ vlc_tls_ClientCreate at Base 2.0.0
+ vlc_tls_ClientSessionCreate at Base 2.1.0
+ vlc_tls_Delete at Base 2.1.0
+ vlc_tls_SessionDelete at Base 2.1.0
+ vlc_unlink at Base 2.0.0
+ vlc_ureduce at Base 2.0.0
+ vlc_vaLog at Base 2.0.0
+ vlm_Control at Base 2.0.0
+ vlm_Delete at Base 2.0.0
+ vlm_ExecuteCommand at Base 2.0.0
+ vlm_MessageAdd at Base 2.0.0
+ vlm_MessageDelete at Base 2.0.0
+ vlm_MessageNew at Base 2.0.0
+ vlm_MessageSimpleNew at Base 2.0.0
+ vlm_New at Base 2.0.0
+ vout_AreDisplayPicturesInvalid at Base 2.0.0
+ vout_Close at Base 2.0.0
+ vout_DeleteDisplay at Base 2.0.0
+ vout_EnableFilter at Base 2.0.0
+ vout_FilterDisplay at Base 2.0.0
+ vout_FlushSubpictureChannel at Base 2.0.0
+ vout_GetDisplayOpengl at Base 2.0.0
+ vout_GetPicture at Base 2.0.0
+ vout_GetSnapshot at Base 2.0.0
+ vout_HoldPicture at Base 2.0.0
+ vout_IsDisplayFiltered at Base 2.0.0
+ vout_ManageDisplay at Base 2.0.0
+ vout_NewDisplay at Base 2.0.0
+ vout_OSDEpg at Base 2.0.0
+ vout_OSDIcon at Base 2.0.0
+ vout_OSDMessage at Base 2.0.0
+ vout_OSDSlider at Base 2.0.0
+ vout_OSDText at Base 2.0.0
+ vout_PutPicture at Base 2.0.0
+ vout_PutSubpicture at Base 2.0.0
+ vout_RegisterSubpictureChannel at Base 2.0.0
+ vout_ReleasePicture at Base 2.0.0
+ vout_Request at Base 2.0.0
+ vout_SetDisplayAspect at Base 2.0.0
+ vout_SetDisplayCrop at Base 2.0.0
+ vout_SetDisplayFilled at Base 2.0.0
+ vout_SetDisplayFullscreen at Base 2.0.0
+ vout_SetDisplayZoom at Base 2.0.0
+ vout_SetWindowState at Base 2.0.0
+ vout_display_GetDefaultDisplaySize at Base 2.0.0
+ vout_display_PlacePicture at Base 2.0.0
+ vout_window_Control at Base 2.0.0
+ vout_window_Delete at Base 2.0.0
+ vout_window_New at Base 2.0.0
+ xml_Create at Base 2.0.0
+ xml_Delete at Base 2.0.0
+ xml_ReaderCreate at Base 2.0.0
+ xml_ReaderDelete at Base 2.0.0
+ xml_ReaderReset at Base 2.0.0
diff --git a/debian/patches/ftbfs_freetype.patch b/debian/patches/ftbfs_freetype.patch
new file mode 100644
index 0000000..c38e606
--- /dev/null
+++ b/debian/patches/ftbfs_freetype.patch
@@ -0,0 +1,19 @@
+Description: Fix FTBFS with freetype 2.5.1
+Author: Mateusz Łukasik <mati75 at linuxmint.pl>
+Bug-Debian: http://bugs.debian.org/731513
+
+--- a/modules/text_renderer/freetype.c
++++ b/modules/text_renderer/freetype.c
+@@ -90,10 +90,11 @@
+ #endif
+ 
+ /* Freetype */
+-#include <freetype/ftsynth.h>
++#include <ft2build.h>
+ #include FT_FREETYPE_H
+ #include FT_GLYPH_H
+ #include FT_STROKER_H
++#include FT_SYNTHESIS_H
+ 
+ #define FT_FLOOR(X)     ((X & -64) >> 6)
+ #define FT_CEIL(X)      (((X + 63) & -64) >> 6)
diff --git a/debian/patches/pnap-grammar.patch b/debian/patches/pnap-grammar.patch
new file mode 100644
index 0000000..f0da5d8
--- /dev/null
+++ b/debian/patches/pnap-grammar.patch
@@ -0,0 +1,30 @@
+From: Edward Wang <edward.c.wang at compdigitec.com>
+Date: Sat, 13 Jul 2013 15:38:49 -0400
+Origin: upstream, http://git.videolan.org/?p=vlc.git;a=commitdiff;h=69d75edde2c5b7f70f238d7f7546cc418c3f18ea
+
+--- a/modules/gui/qt4/dialogs/firstrun.cpp
++++ b/modules/gui/qt4/dialogs/firstrun.cpp
+@@ -69,16 +69,16 @@ void FirstRun::buildPrivDialog()
+     QGroupBox *blabla = new QGroupBox( qtr( "Privacy and Network Access Policy" ) );
+     QGridLayout *blablaLayout = new QGridLayout( blabla );
+     QLabel *text = new QLabel( qtr(
+-        "<p>In order to protect your privacy, the <i>VLC media player</i> "
++        "<p>In order to protect your privacy, <i>VLC media player</i> "
+         "does <b>not</b> collect personal data or transmit them, "
+         "not even in anonymized form, to anyone."
+         "</p>\n"
+         "<p>Nevertheless, <i>VLC</i> is able to automatically retrieve "
+         "information about the media in your playlist from third party "
+-        "Internet-based services. That includes covert arts, track names, "
+-        "authoring and other meta-data."
++        "Internet-based services. This includes cover art, track names, "
++        "artist names and other meta-data."
+         "</p>\n"
+-        "That may entail identifying some of your media files to third party "
++        "Consequently, this may entail identifying some of your media files to third party "
+         "entities. Therefore the <i>VLC</i> developers require your express "
+         "consent for the media player to access the Internet automatically."
+         "</p>\n"
+-- 
+1.7.10.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..da829bf
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+pnap-grammar.patch
+ftbfs_freetype.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..8e9fbea
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,301 @@
+#!/usr/bin/make -f
+
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_ARCH      ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+DEB_HOST_ARCH_CPU  ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
+DEB_HOST_ARCH_OS   ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
+DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+VERSION = $(shell dpkg-parsechangelog|sed -n 's/^Version: //p')
+DEBIAN_VERSION = $(shell echo $(VERSION)|sed -nr 's/[^:]+://; s/.*-([^-]+$$)/\1/p')
+
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+confflags := --build=$(DEB_BUILD_GNU_TYPE)
+else
+confflags := --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE)
+endif
+
+ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
+confflags += --enable-debug
+endif
+
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
+confflags += --disable-optimizations --disable-mmx --disable-sse --disable-altivec
+endif
+
+CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+
+# configure flags
+confflags += \
+	CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)" \
+	LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS)" \
+	--config-cache \
+	--disable-maintainer-mode \
+	--disable-silent-rules \
+	--disable-update-check \
+	--enable-fast-install \
+	--prefix=/usr \
+	--docdir=/usr/share/doc/vlc-nox \
+	--libdir=/usr/lib \
+	--sysconfdir=/etc \
+	--with-binary-version=$(DEBIAN_VERSION) \
+	$(NULL)
+# configure features
+confflags += \
+	--enable-a52 \
+	--enable-aa \
+	--enable-bluray \
+	--enable-bonjour \
+	--enable-caca \
+	--enable-chromaprint \
+	--enable-dbus \
+	--enable-dca \
+	--enable-dirac \
+	--enable-directfb \
+	--enable-dvbpsi \
+	--enable-dvdnav \
+	--enable-faad \
+	--enable-flac \
+	--enable-fluidsynth \
+	--enable-freetype \
+	--enable-fribidi \
+	--enable-gnutls \
+	--enable-jack \
+	--enable-kate \
+	--enable-libass \
+	--enable-libfreerdp \
+	--enable-libmpeg2 \
+	--enable-libxml2 \
+	--enable-lirc \
+	--enable-live555 \
+	--enable-mad \
+	--enable-mkv \
+	--enable-mod \
+	--enable-mpc \
+	--enable-mtp \
+	--enable-mux_ogg \
+	--enable-ncurses \
+	--enable-notify \
+	--enable-ogg \
+	--enable-opus \
+	--enable-oss \
+	--enable-pulse \
+	--enable-qt \
+	--enable-realrtsp \
+	--enable-samplerate \
+	--enable-schroedinger \
+	--enable-sdl \
+	--enable-sftp \
+	--enable-shout \
+	--enable-skins2 \
+	--enable-smbclient \
+	--enable-speex \
+	--enable-svg \
+	--enable-taglib \
+	--enable-theora \
+	--enable-twolame \
+	--enable-upnp \
+	--enable-vcd \
+	--enable-vcdx \
+	--enable-vorbis \
+	--enable-x264 \
+	--enable-zvbi \
+	--with-kde-solid=/usr/share/kde4/apps/solid/actions/ \
+	$(NULL)
+# Reasons for disabling features:
+# decklink -> not in Debian
+# dxva2 -> Windows only
+# fdkaac -> in Debian non-free
+# gnomevfs -> poorly maintained
+# goom -> not in Debian
+# libvnc -> libvncserver-dev (containing libvncclient) conflicts with gnutls28
+# opencv -> developer plugin not required by end users
+# projectm -> broken
+# quicksync -> currently not supported on Linux
+# sndio -> not in Debian
+# telx -> incompatible with zvbi
+# vsxu -> not in Debian
+# wasapi -> Windows only
+confflags += \
+	--disable-decklink \
+	--disable-dxva2 \
+	--disable-fdkaac \
+	--disable-gnomevfs \
+	--disable-goom \
+	--disable-libvnc \
+	--disable-opencv \
+	--disable-projectm \
+	--disable-quicksync \
+	--disable-sndio \
+	--disable-telx \
+	--disable-vsxu \
+	--disable-wasapi \
+	$(NULL)
+
+# Linux specific flags
+ifeq ($(DEB_HOST_ARCH_OS),linux)
+# omxil should be enabled on all systems, but libomxil-bellagio does
+# not build on kfreebsd and hurd (currently)
+confflags += \
+	--enable-alsa \
+	--enable-atmo \
+	--enable-dc1394 \
+	--enable-dv1394 \
+	--enable-linsys \
+	--enable-omxil \
+	--enable-udev \
+	$(NULL)
+else
+confflags += \
+	--disable-alsa \
+	--disable-atmo \
+	--disable-dc1394 \
+	--disable-dv1394 \
+	--disable-linsys \
+	--disable-omxil \
+	--disable-udev \
+	$(NULL)
+removeplugins += \
+	alsa \
+	libatmo \
+	libdc1394 \
+	libdtv \
+	libdvb \
+	libdv1394 \
+	libfb \
+	libomxil \
+	linsys \
+	libudev \
+	$(NULL)
+endif
+
+# Linux and kFreeBSD specific flags
+ifeq (,$(filter-out linux kfreebsd,$(DEB_HOST_ARCH_OS)))
+confflags += --enable-libva
+else
+confflags += --disable-libva
+removeplugins += libvaapi
+endif
+
+# Linux and kFreeBSD specific flags
+# kfreebsd disabled due to a build failure
+ifeq (,$(filter-out linux,$(DEB_HOST_ARCH_OS)))
+confflags += --enable-v4l2
+else
+confflags += --disable-v4l2
+removeplugins += libv4l2
+endif
+
+# Linux amd64 and i386 specific flags
+ifeq (,$(filter-out amd64 i386,$(DEB_HOST_ARCH)))
+confflags += --enable-crystalhd
+else
+confflags += --disable-crystalhd
+removeplugins += libcrystalhd
+endif
+
+# amd64 and i386 specific optimizations
+ifeq (,$(filter-out amd64 i386,$(DEB_HOST_ARCH_CPU)))
+confflags += --enable-mmx --enable-sse
+else
+confflags += --disable-mmx --disable-sse
+removeplugins += mmx sse2
+endif
+
+# ARM specific optimizations
+ifeq (,$(filter-out armhf,$(DEB_HOST_ARCH_CPU)))
+confflags += --enable-neon
+else
+confflags += --disable-neon
+removeplugins += neon
+endif
+
+# PowerPC specific optimizations (excluding powerpcspe)
+ifeq (,$(filter-out powerpc,$(DEB_HOST_ARCH_CPU))$(filter powerpcspe,$(DEB_HOST_ARCH)))
+confflags += --enable-altivec
+else
+confflags += --disable-altivec
+removeplugins += altivec
+endif
+
+# PowerPCSPE specific optimizations
+ifeq (,$(filter-out powerpcspe,$(DEB_HOST_ARCH)))
+CFLAGS += -mtune=8548
+CXXFLAGS += -mtune=8548
+endif
+
+confflags += \
+	CFLAGS="$(CFLAGS)" \
+	CXXFLAGS="$(CXXFLAGS)" \
+	$(NULL)
+
+%:
+	dh $@ --parallel --with autoreconf
+
+override_dh_autoreconf:
+	dh_autoreconf --as-needed
+
+override_dh_auto_clean:
+	rm -f debian/vlc.install debian/vlc-nox.install
+	dh_auto_clean
+
+override_dh_auto_configure:
+	dh_auto_configure -- $(confflags)
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+	# Check which plugins were built and whether they load properly.
+	@if test $$( id -u ) -eq 0 ; then \
+	   echo "Not runing the test as you are compiling as root"; \
+	   echo "Use 'dpkg-buildpackage -rfakeroot' rather than 'fakeroot dpkg-buildpackage'"; \
+	else \
+	   command="./vlc -vvv --ignore-config --no-plugins-cache --list --no-color"; \
+	   echo "$${command}"; $${command} ; \
+	fi
+endif
+endif
+
+override_dh_install:
+	# Remove disabled plugins
+	sed "/\($(shell echo $(removeplugins) | sed 's/ /\\|/g')\)_/d" debian/vlc.install.in > debian/vlc.install
+	sed "/\($(shell echo $(removeplugins) | sed 's/ /\\|/g')\)_/d" debian/vlc-nox.install.in > debian/vlc-nox.install
+	# Clean up libtool crap
+	find debian/tmp -name '*.la' -delete
+	# Remove useless stuff
+	ln -sf /usr/share/fonts/truetype/freefont/FreeSans.ttf debian/tmp/usr/share/vlc/skins2/fonts/FreeSans.ttf
+	ln -sf /usr/share/fonts/truetype/freefont/FreeMonoBold.ttf debian/tmp/usr/share/vlc/skins2/fonts/FreeSansBold.ttf
+	rm -f debian/tmp/usr/share/man/man1/vlc-config.1
+	# Remove additional license files
+	find debian/tmp -name LICENSE -delete
+	# Install stuff
+	dh_install --fail-missing
+ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
+	# Check that we did not install a plugin linked with libX11 or
+	# libxcb in vlc-nox
+	BORKED=no; \
+	for file in $$(find debian/vlc-nox/usr/lib/vlc -name '*.so'); do \
+	  if objdump -x $$file | egrep -q -e '^ +NEEDED +libX11\.so' \
+	                                  -e '^ +NEEDED +libxcb\.so'; then \
+	    BORKED=yes; \
+	    echo $$file depends on libX11 or libxcb; \
+	  fi; \
+	done; \
+	if test "$$BORKED" = yes; then exit 1; fi
+endif
+	$(if $(shell dpkg-vendor --is Ubuntu && echo true),dh_install -pvlc-nox debian/source_vlc.py usr/share/apport/package-hooks/)
+	dh_buildinfo -p vlc-nox
+
+override_dh_strip:
+	dh_strip --dbg-package=vlc-dbg
+
+override_dh_installdocs:
+	dh_installdocs -p vlc-data
+	dh_installdocs -p vlc-nox
+
+override_dh_installchangelogs:
+	dh_installchangelogs ChangeLog -p vlc-data
+	dh_installchangelogs ChangeLog -p vlc-nox
+
+override_dh_builddeb:
+	dh_builddeb -- -Zxz
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 0000000..9cdfca9
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1,2 @@
+unapply-patches
+abort-on-upstream-changes
diff --git a/debian/source_vlc.py b/debian/source_vlc.py
new file mode 100644
index 0000000..9947364
--- /dev/null
+++ b/debian/source_vlc.py
@@ -0,0 +1,31 @@
+'''apport package hook for vlc
+
+(c) 2010 Canonical Ltd.
+Author: Brian Murray <brian at ubuntu.com>
+'''
+
+from apport.hookutils import attach_related_packages
+
+def add_info(report):
+	attach_related_packages(report, [
+		"libaa1",
+		"libgl1-mesa-glx",
+		"libgl1",
+		"libglib2.0-0",
+		"libgtk2.0-0",
+		"libnotify1",
+		"libnotify1-gtk2.10",
+		"libqtcore4",
+		"libqtgui4",
+		"libsdl-image1.2",
+		"libsdl1.2debian",
+		"libtar",
+		"libx11-6",
+		"libx264-85",
+		"libxcb-keysyms1",
+		"libxcb1",
+		"libxext6",
+		"libxinerama1",
+		"libxv1",
+		"libxxf86vm1",
+		] )
diff --git a/debian/vlc-data.install b/debian/vlc-data.install
new file mode 100644
index 0000000..0bd59ba
--- /dev/null
+++ b/debian/vlc-data.install
@@ -0,0 +1,4 @@
+usr/share/doc
+usr/share/icons
+usr/share/locale
+usr/share/vlc
diff --git a/debian/vlc-data.maintscript b/debian/vlc-data.maintscript
new file mode 100644
index 0000000..f8126ba
--- /dev/null
+++ b/debian/vlc-data.maintscript
@@ -0,0 +1,2 @@
+rm_conffile /etc/vlc/lua/http/dialogs/.hosts 2.1.1
+rm_conffile /etc/vlc/lua/http/.hosts 2.1.1
diff --git a/debian/vlc-data.postinst b/debian/vlc-data.postinst
new file mode 100644
index 0000000..0a3d0eb
--- /dev/null
+++ b/debian/vlc-data.postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+	configure)
+		# Remove empty /etc/vlc directory (to work around bug #584185).
+		if dpkg --compare-versions "$2" le "2.1.1" && test -d "/etc/vlc"; then
+			rmdir --ignore-fail-on-non-empty /etc/vlc/lua/http/dialogs /etc/vlc/lua/http /etc/vlc/lua /etc/vlc
+		fi
+		;;
+esac
diff --git a/debian/vlc-dbg.links b/debian/vlc-dbg.links
new file mode 100644
index 0000000..54f52b4
--- /dev/null
+++ b/debian/vlc-dbg.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-dbg
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-dbg
diff --git a/debian/vlc-nox.docs b/debian/vlc-nox.docs
new file mode 100644
index 0000000..ff2b443
--- /dev/null
+++ b/debian/vlc-nox.docs
@@ -0,0 +1,5 @@
+debian/README.Debian
+AUTHORS
+NEWS
+README
+THANKS
diff --git a/debian/vlc-nox.install.in b/debian/vlc-nox.install.in
new file mode 100644
index 0000000..7559fed
--- /dev/null
+++ b/debian/vlc-nox.install.in
@@ -0,0 +1,199 @@
+usr/bin/cvlc
+usr/bin/nvlc
+usr/bin/rvlc
+usr/bin/vlc
+usr/bin/vlc-wrapper
+usr/lib/vlc/lua/
+usr/lib/vlc/plugins/access/libaccess_alsa_plugin.so
+usr/lib/vlc/plugins/access/libaccess_attachment_plugin.so
+usr/lib/vlc/plugins/access/libaccess_avio_plugin.so
+usr/lib/vlc/plugins/access/libaccess_bd_plugin.so
+usr/lib/vlc/plugins/access/libaccess_ftp_plugin.so
+usr/lib/vlc/plugins/access/libaccess_http_plugin.so
+usr/lib/vlc/plugins/access/libaccess_imem_plugin.so
+usr/lib/vlc/plugins/access/libaccess_mms_plugin.so
+usr/lib/vlc/plugins/access/libaccess_mtp_plugin.so
+usr/lib/vlc/plugins/access/libaccess_oss_plugin.so
+usr/lib/vlc/plugins/access/libaccess_rar_plugin.so
+usr/lib/vlc/plugins/access/libaccess_realrtsp_plugin.so
+usr/lib/vlc/plugins/access/libaccess_sftp_plugin.so
+usr/lib/vlc/plugins/access/libaccess_smb_plugin.so
+usr/lib/vlc/plugins/access/libaccess_tcp_plugin.so
+usr/lib/vlc/plugins/access/libaccess_udp_plugin.so
+usr/lib/vlc/plugins/access/libaccess_vdr_plugin.so
+usr/lib/vlc/plugins/access/libcdda_plugin.so
+usr/lib/vlc/plugins/access/libdc1394_plugin.so
+usr/lib/vlc/plugins/access/libdtv_plugin.so
+usr/lib/vlc/plugins/access/libdv1394_plugin.so
+usr/lib/vlc/plugins/access/libdvb_plugin.so
+usr/lib/vlc/plugins/access/libdvdnav_plugin.so
+usr/lib/vlc/plugins/access/libdvdread_plugin.so
+usr/lib/vlc/plugins/access/libfilesystem_plugin.so
+usr/lib/vlc/plugins/access/libidummy_plugin.so
+usr/lib/vlc/plugins/access/liblibbluray_plugin.so
+usr/lib/vlc/plugins/access/liblinsys_hdsdi_plugin.so
+usr/lib/vlc/plugins/access/liblinsys_sdi_plugin.so
+usr/lib/vlc/plugins/access/liblive555_plugin.so
+usr/lib/vlc/plugins/access/librdp_plugin.so
+usr/lib/vlc/plugins/access/librtp_plugin.so
+usr/lib/vlc/plugins/access/libsdp_plugin.so
+usr/lib/vlc/plugins/access/libshm_plugin.so
+usr/lib/vlc/plugins/access/libstream_filter_rar_plugin.so
+usr/lib/vlc/plugins/access/libtimecode_plugin.so
+usr/lib/vlc/plugins/access/libv4l2_plugin.so
+usr/lib/vlc/plugins/access/libvcd_plugin.so
+usr/lib/vlc/plugins/access/libvcdx_plugin.so
+usr/lib/vlc/plugins/access/libzip_plugin.so
+usr/lib/vlc/plugins/access_output
+usr/lib/vlc/plugins/altivec/libi420_yuy2_altivec_plugin.so
+usr/lib/vlc/plugins/arm_neon/libaudio_format_neon_plugin.so
+usr/lib/vlc/plugins/arm_neon/libchroma_yuv_neon_plugin.so
+usr/lib/vlc/plugins/arm_neon/libyuv_rgb_neon_plugin.so
+usr/lib/vlc/plugins/audio_filter
+usr/lib/vlc/plugins/audio_mixer
+usr/lib/vlc/plugins/audio_output/libadummy_plugin.so
+usr/lib/vlc/plugins/audio_output/libafile_plugin.so
+usr/lib/vlc/plugins/audio_output/libalsa_plugin.so
+usr/lib/vlc/plugins/audio_output/libamem_plugin.so
+usr/lib/vlc/plugins/audio_output/liboss_plugin.so
+usr/lib/vlc/plugins/codec/liba52_plugin.so
+usr/lib/vlc/plugins/codec/libadpcm_plugin.so
+usr/lib/vlc/plugins/codec/libaes3_plugin.so
+usr/lib/vlc/plugins/codec/libaraw_plugin.so
+usr/lib/vlc/plugins/codec/libavcodec_plugin.so
+usr/lib/vlc/plugins/codec/libcc_plugin.so
+usr/lib/vlc/plugins/codec/libcdg_plugin.so
+usr/lib/vlc/plugins/codec/libcrystalhd_plugin.so
+usr/lib/vlc/plugins/codec/libcvdsub_plugin.so
+usr/lib/vlc/plugins/codec/libddummy_plugin.so
+usr/lib/vlc/plugins/codec/libdirac_plugin.so
+usr/lib/vlc/plugins/codec/libdts_plugin.so
+usr/lib/vlc/plugins/codec/libdvbsub_plugin.so
+usr/lib/vlc/plugins/codec/libedummy_plugin.so
+usr/lib/vlc/plugins/codec/libfaad_plugin.so
+usr/lib/vlc/plugins/codec/libflac_plugin.so
+usr/lib/vlc/plugins/codec/libg711_plugin.so
+usr/lib/vlc/plugins/codec/libkate_plugin.so
+usr/lib/vlc/plugins/codec/liblibass_plugin.so
+usr/lib/vlc/plugins/codec/liblibmpeg2_plugin.so
+usr/lib/vlc/plugins/codec/liblpcm_plugin.so
+usr/lib/vlc/plugins/codec/libmpeg_audio_plugin.so
+usr/lib/vlc/plugins/codec/libomxil_plugin.so
+usr/lib/vlc/plugins/codec/libopus_plugin.so
+usr/lib/vlc/plugins/codec/libpng_plugin.so
+usr/lib/vlc/plugins/codec/librawvideo_plugin.so
+usr/lib/vlc/plugins/codec/libschroedinger_plugin.so
+usr/lib/vlc/plugins/codec/libscte27_plugin.so
+usr/lib/vlc/plugins/codec/libspeex_plugin.so
+usr/lib/vlc/plugins/codec/libspudec_plugin.so
+usr/lib/vlc/plugins/codec/libstl_plugin.so
+usr/lib/vlc/plugins/codec/libsubsdec_plugin.so
+usr/lib/vlc/plugins/codec/libsubsusf_plugin.so
+usr/lib/vlc/plugins/codec/libsvcdsub_plugin.so
+usr/lib/vlc/plugins/codec/libt140_plugin.so
+usr/lib/vlc/plugins/codec/libtheora_plugin.so
+usr/lib/vlc/plugins/codec/libtwolame_plugin.so
+usr/lib/vlc/plugins/codec/libuleaddvaudio_plugin.so
+usr/lib/vlc/plugins/codec/libvorbis_plugin.so
+usr/lib/vlc/plugins/codec/libx264_plugin.so
+usr/lib/vlc/plugins/codec/libxwd_plugin.so
+usr/lib/vlc/plugins/control/libdbus_plugin.so
+usr/lib/vlc/plugins/control/libdummy_plugin.so
+usr/lib/vlc/plugins/control/libgestures_plugin.so
+usr/lib/vlc/plugins/control/libhotkeys_plugin.so
+usr/lib/vlc/plugins/control/liblirc_plugin.so
+usr/lib/vlc/plugins/control/libmotion_plugin.so
+usr/lib/vlc/plugins/control/libnetsync_plugin.so
+usr/lib/vlc/plugins/control/liboldrc_plugin.so
+usr/lib/vlc/plugins/demux
+usr/lib/vlc/plugins/gui/libncurses_plugin.so
+usr/lib/vlc/plugins/lua/liblua_plugin.so
+usr/lib/vlc/plugins/meta_engine
+usr/lib/vlc/plugins/misc/libaudioscrobbler_plugin.so
+usr/lib/vlc/plugins/misc/libdbus_screensaver_plugin.so
+usr/lib/vlc/plugins/misc/libexport_plugin.so
+usr/lib/vlc/plugins/misc/libfingerprinter_plugin.so
+usr/lib/vlc/plugins/misc/libgnutls_plugin.so
+usr/lib/vlc/plugins/misc/liblogger_plugin.so
+usr/lib/vlc/plugins/misc/libstats_plugin.so
+usr/lib/vlc/plugins/misc/libvod_rtsp_plugin.so
+usr/lib/vlc/plugins/misc/libxml_plugin.so
+usr/lib/vlc/plugins/mmx/libi420_rgb_mmx_plugin.so
+usr/lib/vlc/plugins/mmx/libi420_yuy2_mmx_plugin.so
+usr/lib/vlc/plugins/mmx/libi422_yuy2_mmx_plugin.so
+usr/lib/vlc/plugins/mux
+usr/lib/vlc/plugins/packetizer
+usr/lib/vlc/plugins/plugins.dat
+usr/lib/vlc/plugins/services_discovery/libbonjour_plugin.so
+usr/lib/vlc/plugins/services_discovery/libmediadirs_plugin.so
+usr/lib/vlc/plugins/services_discovery/libmtp_plugin.so
+usr/lib/vlc/plugins/services_discovery/libpodcast_plugin.so
+usr/lib/vlc/plugins/services_discovery/libsap_plugin.so
+usr/lib/vlc/plugins/services_discovery/libudev_plugin.so
+usr/lib/vlc/plugins/services_discovery/libupnp_plugin.so
+usr/lib/vlc/plugins/sse2/libi420_rgb_sse2_plugin.so
+usr/lib/vlc/plugins/sse2/libi420_yuy2_sse2_plugin.so
+usr/lib/vlc/plugins/sse2/libi422_yuy2_sse2_plugin.so
+usr/lib/vlc/plugins/stream_filter
+usr/lib/vlc/plugins/stream_out
+usr/lib/vlc/plugins/text_renderer/libfreetype_plugin.so
+usr/lib/vlc/plugins/text_renderer/libtdummy_plugin.so
+usr/lib/vlc/plugins/video_chroma
+usr/lib/vlc/plugins/video_filter/libadjust_plugin.so
+usr/lib/vlc/plugins/video_filter/libalphamask_plugin.so
+usr/lib/vlc/plugins/video_filter/libanaglyph_plugin.so
+usr/lib/vlc/plugins/video_filter/libantiflicker_plugin.so
+usr/lib/vlc/plugins/video_filter/libatmo_plugin.so
+usr/lib/vlc/plugins/video_filter/libaudiobargraph_v_plugin.so
+usr/lib/vlc/plugins/video_filter/libball_plugin.so
+usr/lib/vlc/plugins/video_filter/libblend_plugin.so
+usr/lib/vlc/plugins/video_filter/libblendbench_plugin.so
+usr/lib/vlc/plugins/video_filter/libbluescreen_plugin.so
+usr/lib/vlc/plugins/video_filter/libcanvas_plugin.so
+usr/lib/vlc/plugins/video_filter/libchain_plugin.so
+usr/lib/vlc/plugins/video_filter/libclone_plugin.so
+usr/lib/vlc/plugins/video_filter/libcolorthres_plugin.so
+usr/lib/vlc/plugins/video_filter/libcroppadd_plugin.so
+usr/lib/vlc/plugins/video_filter/libdeinterlace_plugin.so
+usr/lib/vlc/plugins/video_filter/libdynamicoverlay_plugin.so
+usr/lib/vlc/plugins/video_filter/liberase_plugin.so
+usr/lib/vlc/plugins/video_filter/libextract_plugin.so
+usr/lib/vlc/plugins/video_filter/libgaussianblur_plugin.so
+usr/lib/vlc/plugins/video_filter/libgradfun_plugin.so
+usr/lib/vlc/plugins/video_filter/libgradient_plugin.so
+usr/lib/vlc/plugins/video_filter/libgrain_plugin.so
+usr/lib/vlc/plugins/video_filter/libhqdn3d_plugin.so
+usr/lib/vlc/plugins/video_filter/libinvert_plugin.so
+usr/lib/vlc/plugins/video_filter/liblogo_plugin.so
+usr/lib/vlc/plugins/video_filter/libmagnify_plugin.so
+usr/lib/vlc/plugins/video_filter/libmarq_plugin.so
+usr/lib/vlc/plugins/video_filter/libmirror_plugin.so
+usr/lib/vlc/plugins/video_filter/libmosaic_plugin.so
+usr/lib/vlc/plugins/video_filter/libmotionblur_plugin.so
+usr/lib/vlc/plugins/video_filter/libmotiondetect_plugin.so
+usr/lib/vlc/plugins/video_filter/libposterize_plugin.so
+usr/lib/vlc/plugins/video_filter/libpostproc_plugin.so
+usr/lib/vlc/plugins/video_filter/libpsychedelic_plugin.so
+usr/lib/vlc/plugins/video_filter/libpuzzle_plugin.so
+usr/lib/vlc/plugins/video_filter/libremoteosd_plugin.so
+usr/lib/vlc/plugins/video_filter/libripple_plugin.so
+usr/lib/vlc/plugins/video_filter/librotate_plugin.so
+usr/lib/vlc/plugins/video_filter/librss_plugin.so
+usr/lib/vlc/plugins/video_filter/libscale_plugin.so
+usr/lib/vlc/plugins/video_filter/libscene_plugin.so
+usr/lib/vlc/plugins/video_filter/libsepia_plugin.so
+usr/lib/vlc/plugins/video_filter/libsharpen_plugin.so
+usr/lib/vlc/plugins/video_filter/libsubsdelay_plugin.so
+usr/lib/vlc/plugins/video_filter/libswscale_plugin.so
+usr/lib/vlc/plugins/video_filter/libtransform_plugin.so
+usr/lib/vlc/plugins/video_filter/libwall_plugin.so
+usr/lib/vlc/plugins/video_filter/libwave_plugin.so
+usr/lib/vlc/plugins/video_filter/libyuvp_plugin.so
+usr/lib/vlc/plugins/video_output/libdirectfb_plugin.so
+usr/lib/vlc/plugins/video_output/libfb_plugin.so
+usr/lib/vlc/plugins/video_output/libvdummy_plugin.so
+usr/lib/vlc/plugins/video_output/libvmem_plugin.so
+usr/lib/vlc/plugins/video_output/libyuv_plugin.so
+usr/lib/vlc/plugins/visualization/libvisual_plugin.so
+usr/lib/vlc/vlc-cache-gen
+usr/share/man
diff --git a/debian/vlc-nox.links b/debian/vlc-nox.links
new file mode 100644
index 0000000..f885918
--- /dev/null
+++ b/debian/vlc-nox.links
@@ -0,0 +1,4 @@
+/usr/share/bug/libvlccore7 /usr/share/bug/vlc-nox
+/usr/share/man/man1/vlc.1.gz /usr/share/man/man1/cvlc.1.gz
+/usr/share/man/man1/vlc.1.gz /usr/share/man/man1/rvlc.1.gz
+/usr/share/man/man1/vlc.1.gz /usr/share/man/man1/nvlc.1.gz
diff --git a/debian/vlc-nox.lintian-overrides b/debian/vlc-nox.lintian-overrides
new file mode 100644
index 0000000..0f8dde5
--- /dev/null
+++ b/debian/vlc-nox.lintian-overrides
@@ -0,0 +1,2 @@
+# Hardening compiler flags are correctly passed (bug #695319)
+vlc-nox binary: hardening-no-fortify-functions usr/lib/vlc/plugins/*_plugin.so
diff --git a/debian/vlc-nox.preinst b/debian/vlc-nox.preinst
new file mode 100644
index 0000000..982eaf7
--- /dev/null
+++ b/debian/vlc-nox.preinst
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -e
+
+case "$1" in
+	upgrade)
+		# Make sure /usr/share/doc/vlc-nox doesn't exist or is not a symlink
+		# before the unpacking (which will put the directory back) - #665743
+		if dpkg --compare-versions "$2" le "2.0.1-3" && test -L "/usr/share/doc/vlc-nox"; then
+			rm /usr/share/doc/vlc-nox
+		fi
+		;;
+esac
+
+#DEBHELPER#
diff --git a/debian/vlc-nox.prerm b/debian/vlc-nox.prerm
new file mode 100644
index 0000000..16f4fe7
--- /dev/null
+++ b/debian/vlc-nox.prerm
@@ -0,0 +1,6 @@
+#! /bin/sh
+set -e
+
+rm -f /usr/lib/vlc/plugins/plugins-*
+
+#DEBHELPER#
diff --git a/debian/vlc-nox.triggers b/debian/vlc-nox.triggers
new file mode 100644
index 0000000..ea4b963
--- /dev/null
+++ b/debian/vlc-nox.triggers
@@ -0,0 +1 @@
+interest /usr/lib/vlc/plugins
diff --git a/debian/vlc-plugin-fluidsynth.install b/debian/vlc-plugin-fluidsynth.install
new file mode 100644
index 0000000..276fda9
--- /dev/null
+++ b/debian/vlc-plugin-fluidsynth.install
@@ -0,0 +1 @@
+usr/lib/vlc/plugins/codec/libfluidsynth_plugin.so
diff --git a/debian/vlc-plugin-fluidsynth.links b/debian/vlc-plugin-fluidsynth.links
new file mode 100644
index 0000000..d0e00e5
--- /dev/null
+++ b/debian/vlc-plugin-fluidsynth.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-fluidsynth
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-fluidsynth
diff --git a/debian/vlc-plugin-jack.install b/debian/vlc-plugin-jack.install
new file mode 100644
index 0000000..c0edb4f
--- /dev/null
+++ b/debian/vlc-plugin-jack.install
@@ -0,0 +1,2 @@
+usr/lib/vlc/plugins/access/libaccess_jack_plugin.so
+usr/lib/vlc/plugins/audio_output/libjack_plugin.so
diff --git a/debian/vlc-plugin-jack.links b/debian/vlc-plugin-jack.links
new file mode 100644
index 0000000..bb2f5bb
--- /dev/null
+++ b/debian/vlc-plugin-jack.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-jack
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-jack
diff --git a/debian/vlc-plugin-notify.install b/debian/vlc-plugin-notify.install
new file mode 100644
index 0000000..8864fae
--- /dev/null
+++ b/debian/vlc-plugin-notify.install
@@ -0,0 +1 @@
+usr/lib/vlc/plugins/notify/libnotify_plugin.so
diff --git a/debian/vlc-plugin-notify.links b/debian/vlc-plugin-notify.links
new file mode 100644
index 0000000..2f5ed0b
--- /dev/null
+++ b/debian/vlc-plugin-notify.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-notify
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-notify
diff --git a/debian/vlc-plugin-pulse.install b/debian/vlc-plugin-pulse.install
new file mode 100644
index 0000000..5fe01ba
--- /dev/null
+++ b/debian/vlc-plugin-pulse.install
@@ -0,0 +1,3 @@
+usr/lib/vlc/plugins/access/libpulsesrc_plugin.so
+usr/lib/vlc/plugins/audio_output/libpulse_plugin.so
+usr/lib/vlc/plugins/services_discovery/libpulselist_plugin.so
diff --git a/debian/vlc-plugin-pulse.links b/debian/vlc-plugin-pulse.links
new file mode 100644
index 0000000..bf630fe
--- /dev/null
+++ b/debian/vlc-plugin-pulse.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-pulse
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-pulse
diff --git a/debian/vlc-plugin-pulse.lintian-overrides b/debian/vlc-plugin-pulse.lintian-overrides
new file mode 100644
index 0000000..7eae9eb
--- /dev/null
+++ b/debian/vlc-plugin-pulse.lintian-overrides
@@ -0,0 +1,2 @@
+# Hardening compiler flags are correctly passed (bug #695319)
+vlc-plugin-pulse binary: hardening-no-fortify-functions usr/lib/vlc/plugins/*_plugin.so
diff --git a/debian/vlc-plugin-sdl.install b/debian/vlc-plugin-sdl.install
new file mode 100644
index 0000000..cbb3b89
--- /dev/null
+++ b/debian/vlc-plugin-sdl.install
@@ -0,0 +1 @@
+usr/lib/vlc/plugins/video_output/libvout_sdl_plugin.so
diff --git a/debian/vlc-plugin-sdl.links b/debian/vlc-plugin-sdl.links
new file mode 100644
index 0000000..530b58c
--- /dev/null
+++ b/debian/vlc-plugin-sdl.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-sdl
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-sdl
diff --git a/debian/vlc-plugin-svg.install b/debian/vlc-plugin-svg.install
new file mode 100644
index 0000000..3b9f485
--- /dev/null
+++ b/debian/vlc-plugin-svg.install
@@ -0,0 +1 @@
+usr/lib/vlc/plugins/text_renderer/libsvg_plugin.so
diff --git a/debian/vlc-plugin-svg.links b/debian/vlc-plugin-svg.links
new file mode 100644
index 0000000..e625341
--- /dev/null
+++ b/debian/vlc-plugin-svg.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-svg
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-svg
diff --git a/debian/vlc-plugin-zvbi.install b/debian/vlc-plugin-zvbi.install
new file mode 100644
index 0000000..c739992
--- /dev/null
+++ b/debian/vlc-plugin-zvbi.install
@@ -0,0 +1 @@
+usr/lib/vlc/plugins/codec/libzvbi_plugin.so
diff --git a/debian/vlc-plugin-zvbi.links b/debian/vlc-plugin-zvbi.links
new file mode 100644
index 0000000..a2d172d
--- /dev/null
+++ b/debian/vlc-plugin-zvbi.links
@@ -0,0 +1,2 @@
+/usr/share/doc/vlc-nox /usr/share/doc/vlc-plugin-zvbi
+/usr/share/bug/vlc-nox /usr/share/bug/vlc-plugin-zvbi
diff --git a/debian/vlc.install.in b/debian/vlc.install.in
new file mode 100644
index 0000000..a48eb7d
--- /dev/null
+++ b/debian/vlc.install.in
@@ -0,0 +1,21 @@
+usr/bin/qvlc
+usr/bin/svlc
+usr/lib/vlc/plugins/access/libxcb_screen_plugin.so
+usr/lib/vlc/plugins/codec/libsdl_image_plugin.so
+usr/lib/vlc/plugins/codec/libvaapi_plugin.so
+usr/lib/vlc/plugins/control/libglobalhotkeys_plugin.so
+usr/lib/vlc/plugins/gui/libqt4_plugin.so
+usr/lib/vlc/plugins/gui/libskins2_plugin.so
+usr/lib/vlc/plugins/misc/libxdg_screensaver_plugin.so
+usr/lib/vlc/plugins/services_discovery/libxcb_apps_plugin.so
+usr/lib/vlc/plugins/video_filter/libpanoramix_plugin.so
+usr/lib/vlc/plugins/video_output/libaa_plugin.so
+usr/lib/vlc/plugins/video_output/libcaca_plugin.so
+usr/lib/vlc/plugins/video_output/libgl_plugin.so
+usr/lib/vlc/plugins/video_output/libglx_plugin.so
+usr/lib/vlc/plugins/video_output/libxcb_glx_plugin.so
+usr/lib/vlc/plugins/video_output/libxcb_window_plugin.so
+usr/lib/vlc/plugins/video_output/libxcb_x11_plugin.so
+usr/lib/vlc/plugins/video_output/libxcb_xv_plugin.so
+usr/share/applications
+usr/share/kde4
diff --git a/debian/vlc.links b/debian/vlc.links
new file mode 100644
index 0000000..726f71d
--- /dev/null
+++ b/debian/vlc.links
@@ -0,0 +1,4 @@
+/usr/share/bug/vlc-nox /usr/share/bug/vlc
+/usr/share/doc/vlc-nox /usr/share/doc/vlc
+/usr/share/man/man1/vlc.1.gz /usr/share/man/man1/svlc.1.gz
+/usr/share/man/man1/vlc.1.gz /usr/share/man/man1/qvlc.1.gz
diff --git a/debian/vlc.lintian-overrides b/debian/vlc.lintian-overrides
new file mode 100644
index 0000000..fe9d071
--- /dev/null
+++ b/debian/vlc.lintian-overrides
@@ -0,0 +1,8 @@
+# The vlc executable is in vlc-nox but the .desktop file is only relevant to vlc(-with-x)
+vlc binary: desktop-command-not-in-package usr/share/applications/vlc.desktop usr/bin/vlc
+# The icon is in vlc-data (the arch=all package)
+vlc binary: menu-icon-missing usr/share/icons/hicolor/32x32/apps/vlc.xpm
+# Lintian fails to detect UTF-8 names (bug #588661)
+vlc binary: spelling-error-in-binary usr/lib/vlc/plugins/gui/libqt4_plugin.so ment meant
+# Hardening compiler flags are correctly passed (bug #695319)
+vlc binary: hardening-no-fortify-functions usr/lib/vlc/plugins/video_output/libxcb_window_plugin.so
diff --git a/debian/vlc.menu b/debian/vlc.menu
new file mode 100644
index 0000000..933a5d4
--- /dev/null
+++ b/debian/vlc.menu
@@ -0,0 +1,3 @@
+?package(vlc):command="/usr/bin/qvlc" hotkey="V" needs="X11" \
+              section="Applications/Video" title="VLC media player" \
+              icon="/usr/share/icons/hicolor/32x32/apps/vlc.xpm" hints="Video"
diff --git a/debian/vlc.mime b/debian/vlc.mime
new file mode 100644
index 0000000..4b00753
--- /dev/null
+++ b/debian/vlc.mime
@@ -0,0 +1,44 @@
+video/mpeg; vlc %s; description="MPEG Video"; test=test -n "$DISPLAY"; priority=7
+video/mpeg; vlc -I rc -V caca %s; needsterminal; description="MPEG Video"; priority=4
+video/x-mpeg; vlc %s; description="MPEG Video"; test=test -n "$DISPLAY"; priority=7
+video/x-mpeg; vlc -I rc -V caca %s; needsterminal; description="MPEG Video"; priority=4
+video/mpeg-system; vlc %s; description="MPEG Video"; test=test -n "$DISPLAY"; priority=7
+video/mpeg-system; vlc -I rc -V caca %s; needsterminal; description="MPEG Video"; priority=4
+video/x-mpeg-system; vlc %s; description="MPEG Video"; test=test -n "$DISPLAY"; priority=7
+video/x-mpeg-system; vlc -I rc -V caca %s; needsterminal; description="MPEG Video"; priority=4
+
+audio/x-wav; vlc %s; description="WAV Audio"; nametemplate=%s.wav; test=test -n "$DISPLAY"; priority=7
+audio/x-wav; vlc -I rc -V caca %s; nametemplate=%s.wav; needsterminal; description="WAV Audio"; priority=4
+
+video/mpeg4; vlc %s; description="MPEG-4 Video"; test=test -n "$DISPLAY"; priority=7
+video/mpeg4; vlc -I rc -V caca %s; needsterminal; description="MPEG-4 Video"; priority=4
+audio/mpeg; vlc %s; description="MPEG Audio"; nametemplate=%s.mpg; test=test -n "$DISPLAY"; priority=7
+audio/mpeg; vlc -I rc -V caca %s; nametemplate=%s.mpg; needsterminal; description="MPEG Audio"; priority=4
+audio/mpegurl; vlc %s; description="MPEG Audio URL"; nametemplate=%s.m3u; test=test -n "$DISPLAY"; priority=7
+audio/mpegurl; vlc -I rc -V caca %s; nametemplate=%s.m3u; needsterminal; description="MPEG Audio URL"; priority=4
+audio/x-mp3; vlc %s; nametemplate=%s.mp3; description="MPEG Audio"; test=test -n "$DISPLAY"; priority=7
+audio/x-mp3; vlc -I rc -V caca %s; nametemplate=%s.mp3; needsterminal; description="MPEG Audio"; priority=4
+audio/mpeg4; vlc %s; description="MPEG-4 Audio"; test=test -n "$DISPLAY"; priority=7
+audio/mpeg4; vlc -I rc -V caca %s; needsterminal; description="MPEG-4 Audio"; priority=4
+application/mpeg4-iod; vlc %s; description="MPEG-4 Video"; test=test -n "$DISPLAY"; priority=7
+application/mpeg4-iod; vlc -I rc -V caca %s; needsterminal; description="MPEG-4 Video"; priority=4
+application/mpeg4-muxcodetable; vlc %s; description="MPEG-4 Video"; test=test -n "$DISPLAY"; priority=7
+application/mpeg4-muxcodetable; vlc -I rc -V caca %s; needsterminal; description="MPEG-4 Video"; priority=4
+
+video/x-msvideo; vlc %s; description="MS Video (AVI)"; test=test -n "$DISPLAY"; priority=4
+video/x-msvideo; vlc -I rc -V caca %s; needsterminal; description="MS Video (AVI)"; priority=3
+
+video/quicktime; vlc %s; description="Apple Quicktime Video"; test=test -n "$DISPLAY"; priority=4
+video/quicktime; vlc -I rc -V caca %s; needsterminal; description="Apple Quicktime Video"; priority=3
+
+application/ogg; vlc %s; nametemplate=%s.ogg; description="Ogg stream"; test=test -n "$DISPLAY"; priority=4
+application/ogg; vlc -I rc -V caca %s; nametemplate=%s.ogg; needsterminal; description="Ogg stream"; priority=3
+application/x-ogg; vlc %s; nametemplate=%s.ogg; description="Ogg stream"; test=test -n "$DISPLAY"; priority=4
+application/x-ogg; vlc -I rc -V caca %s; nametemplate=%s.ogg; needsterminal; description="Ogg stream"; priority=3
+video/ogg; vlc %s; description="Ogg Video"; test=test -n "$DISPLAY"; priority=4
+video/ogg; vlc -I rc -V caca %s; needsterminal; description="Ogg Video"; priority=3
+
+application/x-ms-asf-plugin; vlc %s; description="Windows Media Video"; test=test -n "$DISPLAY"; priority=4
+application/x-ms-asf-plugin; vlc -I rc -V caca %s; needsterminal; description="Windows Media Video"; priority=3
+application/x-mplayer2; vlc %s; description="Windows Media"; test=test -n "$DISPLAY"; priority=4
+application/x-mplayer2; vlc -I rc -V caca %s; needsterminal; description="Windows Media"; priority=3
diff --git a/debian/vlc.postinst b/debian/vlc.postinst
new file mode 100644
index 0000000..a208a85
--- /dev/null
+++ b/debian/vlc.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+set -e
+
+# Replace documentation directory with symlink
+docdir="/usr/share/doc/vlc"
+if [ -d $docdir ] && [ ! -L $docdir ]; then
+    if rmdir $docdir 2>/dev/null; then
+        ln -sf vlc-nox $docdir
+    fi
+fi
+
+#DEBHELPER#
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..8785c4e
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://download.videolan.org/pub/videolan/vlc/([\d][\d\.]+[a-z]?)/vlc-([\d][\d\.]+[a-z]?)\.tar\.xz
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/Info.plist b/extras/package/macosx/Delete_Preferences.app/Contents/Info.plist
new file mode 100644
index 0000000..544939d
--- /dev/null
+++ b/extras/package/macosx/Delete_Preferences.app/Contents/Info.plist
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>CFBundleAllowMixedLocalizations</key>
+	<true/>
+	<key>CFBundleDevelopmentRegion</key>
+	<string>English</string>
+	<key>CFBundleExecutable</key>
+	<string>applet</string>
+	<key>CFBundleIconFile</key>
+	<string>applet</string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundleName</key>
+	<string>Delete_Preferences</string>
+	<key>CFBundlePackageType</key>
+	<string>APPL</string>
+	<key>CFBundleSignature</key>
+	<string>aplt</string>
+	<key>LSMinimumSystemVersionByArchitecture</key>
+	<dict>
+		<key>x86_64</key>
+		<string>10.6</string>
+	</dict>
+	<key>LSRequiresCarbon</key>
+	<true/>
+	<key>WindowState</key>
+	<dict>
+		<key>dividerCollapsed</key>
+		<false/>
+		<key>eventLogLevel</key>
+		<integer>-1</integer>
+		<key>name</key>
+		<string>ScriptWindowState</string>
+		<key>positionOfDivider</key>
+		<real>618</real>
+		<key>savedFrame</key>
+		<string>390 587 1311 831 0 0 2560 1418 </string>
+		<key>selectedTabView</key>
+		<string>description</string>
+	</dict>
+</dict>
+</plist>
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/MacOS/applet b/extras/package/macosx/Delete_Preferences.app/Contents/MacOS/applet
new file mode 100755
index 0000000..94b8c6f
Binary files /dev/null and b/extras/package/macosx/Delete_Preferences.app/Contents/MacOS/applet differ
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/PkgInfo b/extras/package/macosx/Delete_Preferences.app/Contents/PkgInfo
new file mode 100644
index 0000000..3253614
--- /dev/null
+++ b/extras/package/macosx/Delete_Preferences.app/Contents/PkgInfo
@@ -0,0 +1 @@
+APPLaplt
\ No newline at end of file
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/Resources/Scripts/main.scpt b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/Scripts/main.scpt
new file mode 100644
index 0000000..5be1104
Binary files /dev/null and b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/Scripts/main.scpt differ
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.icns b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.icns
new file mode 100644
index 0000000..fcc1f09
Binary files /dev/null and b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.icns differ
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.rsrc b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.rsrc
new file mode 100644
index 0000000..c444d27
Binary files /dev/null and b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.rsrc differ
diff --git a/extras/package/macosx/Delete_Preferences.app/Contents/Resources/description.rtfd/TXT.rtf b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/description.rtfd/TXT.rtf
new file mode 100644
index 0000000..9f383fd
--- /dev/null
+++ b/extras/package/macosx/Delete_Preferences.app/Contents/Resources/description.rtfd/TXT.rtf
@@ -0,0 +1,8 @@
+{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\tx7280\tx7840\tx8400\tx8960\tx9520\tx10080\tx10640\tx11200\tx11760\tx12320\tx12880\tx13440\tx14000\tx14560\tx15120\tx15680\tx16240\tx16800\tx17360\tx17920\tx18480\tx19040\tx19600\tx20160\tx20720\tx21280\tx21840\tx22400\tx22960\tx23520\tx24080\tx24640\tx25200\tx25760\tx26320\tx26880\tx27440\tx28000\tx28560\tx29120\tx29680\tx30240\tx30800\tx31360\tx31920\tx32480\tx33040\tx33600\tx34160\tx34720\tx35280\tx35840\tx36400\tx36960\tx37520\tx38080\tx38640\tx39200\tx39760\tx40320\tx40880\tx41440\tx42000\tx42560\tx43120\tx43680\tx44240\tx44800\tx45360\tx45920\tx46480\tx47040\tx47600\tx48160\tx48720\tx49280\tx49840\tx50400\tx50960\tx51520\tx52080\tx52640\tx53200\tx53760\tx54320\tx54880\tx55440\tx56000\pardirnatural
+
+\f0\fs24 \cf0 \CocoaLigature0 This script moves VLC's preferences files to the trash, so the user does not need to search for them. It does not empty your trash, but requires the user to do so afterwards.\
+\
+This script is published under the same license as the VLC package.}
\ No newline at end of file

-- 
VLC media player packaging



More information about the pkg-multimedia-commits mailing list