Commit 50b9bf83 authored by Sam Hocevar's avatar Sam Hocevar

* debian/changelog debian/control debian/rules:

    + Control files for a forthcoming official upload.
parent 9bb51749
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@zoy.org> Tue, 20 Jan 2004 18:30:58 +0100
vlc (0.7.0-1) unstable; urgency=low vlc (0.7.0-1) unstable; urgency=low
* New upstream release. * New upstream release.
......
...@@ -2,7 +2,7 @@ Source: vlc ...@@ -2,7 +2,7 @@ Source: vlc
Section: graphics Section: graphics
Priority: optional Priority: optional
Maintainer: Sam Hocevar (Debian packages) <sam+deb@zoy.org> Maintainer: Sam Hocevar (Debian packages) <sam+deb@zoy.org>
Build-Depends: debhelper (>= 4.0), gettext, xlibs-dev, xlibs-pic, libgnome-dev, libggi2-dev, libglide2-dev [i386], libesd0-dev, libsdl1.2-dev (>= 1.2.2-3.1), libqt3-mt-dev, libqt3-compat-headers, libasound2-dev (>= 0.9.0beta10a), libarts1-dev, libmad0-dev, liblircclient-dev, liba52-0.7.4-dev, aalib1-dev, libdvbpsi2-dev, mozilla-dev, libidl0, libglib2.0-0, kdelibs4-dev, dvb-dev (>= 1.0.1-6), libdv2-dev, libxosd-dev (>= 2.2.4-1.3), svgalibg1-dev (>= 1.4.0) [i386], libogg-dev, libvorbis-dev, libwxgtk2.4-dev (>= 2.4.2.4), libdvdplay0-dev (>= 1.0.1-2), libdvdread3-dev, libslp-dev, libflac-dev (>= 1.1.0), libimlib2-dev, libmatroska-dev (>= 0.5.0-3), libfreetype6-dev, libspeex-dev, linux-kernel-headers (>= 2.5.999-test7-bk-7), libcaca-dev (>= 0.6) Build-Depends: debhelper (>= 4.0), gettext, xlibs-dev, xlibs-pic, libgnome-dev, libggi2-dev, libglide2-dev [i386], libesd0-dev, libsdl1.2-dev (>= 1.2.2-3.1), libqt3-mt-dev, libqt3-compat-headers, libasound2-dev (>= 0.9.0beta10a), libarts1-dev, libmad0-dev, liblircclient-dev, liba52-0.7.4-dev, aalib1-dev, libdvbpsi2-dev, mozilla-dev, libidl0, libglib2.0-0, kdelibs4-dev, dvb-dev (>= 1.0.1-6), libdv2-dev, libxosd-dev (>= 2.2.4-1.3), svgalibg1-dev (>= 1.4.0) [i386], libogg-dev, libvorbis-dev, libwxgtk2.4-dev (>= 2.4.2.4), libdvdplay0-dev (>= 1.0.1-2), libdvdread3-dev, libslp-dev, libflac-dev (>= 1.1.0), libimlib2-dev, libmatroska-dev (>= 0.6.2), libfreetype6-dev, libspeex-dev, linux-kernel-headers (>= 2.5.999-test7-bk-7), libcaca-dev (>= 0.8)
Build-Conflicts: libmpeg2-dev, libmpeg2-0-dev, libmpeg2-1-dev, libmpeg2-2-dev, libmpeg2-3-dev Build-Conflicts: libmpeg2-dev, libmpeg2-0-dev, libmpeg2-1-dev, libmpeg2-2-dev, libmpeg2-3-dev
Standards-Version: 3.6.1.0 Standards-Version: 3.6.1.0
......
#!/usr/bin/make -f #!/usr/bin/make -f
# debian/rules for the VideoLAN Client - uses debhelper. # debian/rules for the VideoLAN Client - uses debhelper.
# $Id: rules,v 1.109 2004/01/04 04:53:07 sam Exp $ # $Id: rules,v 1.110 2004/01/20 17:45:19 sam Exp $
# based on Joey Hess's one. # based on Joey Hess's one.
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
...@@ -77,17 +77,17 @@ configure-stamp: ...@@ -77,17 +77,17 @@ configure-stamp:
dh_testdir dh_testdir
# Touch stuff # Touch stuff
touch configure.ac \ touch configure.ac
&& touch aclocal.m4 \ touch aclocal.m4
&& touch configure \ touch configure
&& touch config.h.in \ touch config.h.in
&& touch `find . -name Makefile.in` touch `find . -name Makefile.in`
# Check that we have an ffmpeg tree in here (can be a symlink) # Check that we have an ffmpeg tree in here (can be a symlink)
test -d extras/ffmpeg test -d extras/ffmpeg
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/ffmpeg \ cd extras/ffmpeg \
&& ./configure --enable-pp \ && CC=$(CC) ./configure --enable-pp --disable-debug \
&& cd libavcodec \ && cd libavcodec \
&& $(MAKE); \ && $(MAKE); \
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment