Commit e710eca6 authored by Sam Hocevar's avatar Sam Hocevar

* ./configure.in: the DV module is now a plugin, with the proper

    dependencies in debian/control.
parent f6237526
...@@ -1267,7 +1267,7 @@ AC_ARG_ENABLE(dv, ...@@ -1267,7 +1267,7 @@ AC_ARG_ENABLE(dv,
if test "x${enable_dv}" = "xyes" if test "x${enable_dv}" = "xyes"
then then
AC_CHECK_HEADERS(libdv/dv.h, [ AC_CHECK_HEADERS(libdv/dv.h, [
BUILTINS="${BUILTINS} codec/dv/dv" PLUGINS="${PLUGINS} codec/dv/dv"
dv_LDFLAGS="${dv_LDFLAGS} -ldv" dv_LDFLAGS="${dv_LDFLAGS} -ldv"
],[]) ],[])
fi fi
......
...@@ -180,9 +180,8 @@ Description: MAD audio codec plugin for vlc ...@@ -180,9 +180,8 @@ Description: MAD audio codec plugin for vlc
VideoLAN is a free MPEG, MPEG2, DVD and DivX software solution. VideoLAN is a free MPEG, MPEG2, DVD and DivX software solution.
. .
This plugin adds support for libmad, the MPEG audio decoder library, This plugin adds support for libmad, the MPEG audio decoder library,
to the VideoLAN Client. MAD is 100% fixed-point based. To activate to the VideoLAN Client. MAD is 100% fixed-point based. The plugin is
this plugin, use the `--mpeg_adec mad' flag or select the `mad' MPEG autodetected.
decoder from the preferences menu.
Package: vlc-mad Package: vlc-mad
Architecture: any Architecture: any
...@@ -290,3 +289,11 @@ Description: SVGAlib video output plugin for vlc ...@@ -290,3 +289,11 @@ Description: SVGAlib video output plugin for vlc
output plugin from the preferences menu. Note that you will need root output plugin from the preferences menu. Note that you will need root
permissions to use SVGAlib. permissions to use SVGAlib.
Package: vlc-plugin-dv
Architecture: any
Depends: vlc (= ${Source-Version}), ${shlibs:Depends}
Description: DV codec plugin for vlc
VideoLAN is a free MPEG, MPEG2, DVD and DivX software solution.
.
This plugin adds support for the DV video format to vlc, the VideoLAN
Client. The plugin is autodetected.
...@@ -57,11 +57,11 @@ clean: ...@@ -57,11 +57,11 @@ clean:
rm -f build-stamp rm -f build-stamp
# 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 ffmpeg test -d extras/ffmpeg
-(cd ffmpeg ; make distclean) -(cd extras/ffmpeg ; make distclean)
# Check that we have an faad tree in here (can be a symlink) # Check that we have an faad tree in here (can be a symlink)
test -d faad test -d extras/faad
-(cd faad ; make distclean) -(cd extras/faad ; make distclean)
-$(MAKE) distclean -$(MAKE) distclean
dh_clean dh_clean
...@@ -183,6 +183,11 @@ endif ...@@ -183,6 +183,11 @@ endif
mv debian/vlc/usr/lib/vlc/video_output/svgalib.so \ mv debian/vlc/usr/lib/vlc/video_output/svgalib.so \
debian/vlc-plugin-svgalib/usr/lib/vlc/video_output debian/vlc-plugin-svgalib/usr/lib/vlc/video_output
# Package: vlc-plugin-dv
ln -s vlc debian/vlc-plugin-dv/usr/share/doc/vlc-plugin-dv
mv debian/vlc/usr/lib/vlc/codec/dv.so \
debian/vlc-plugin-dv/usr/lib/vlc/codec
# Clean up # Clean up
rm -f debian/vlc/$(VIDDIR)/*.png rm -f debian/vlc/$(VIDDIR)/*.png
......
usr/lib/vlc/codec
usr/share/doc
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