Commit 1f4f2234 authored by Sam Hocevar's avatar Sam Hocevar

* debian/changelog:

    + Updated to the latest Debian unstable upload.
  * debian/rules:
    + Moved the skins interface into the wxvlc package.
    + Cosmetic fixes.
  * debian/control:
    + Updated the description of the wxvlc package.
  * bootstrap:
    + Put subdirectories of modules/ in SUBDIRS, not DIST_SUBDIRS.
  * Makefile.am:
    + Put modules in SUBDIRS, not DIST_SUBDIRS.
  * .cvsignore:
    + Ignore vlc-config.in.
parent e2ea67fb
...@@ -25,6 +25,7 @@ aclocal.m4 ...@@ -25,6 +25,7 @@ aclocal.m4
vlc-debug.* vlc-debug.*
vlc-log.* vlc-log.*
vlc-config vlc-config
vlc-config.in
vlc vlc
VLC.app VLC.app
vlc.exe vlc.exe
...@@ -7,8 +7,8 @@ NULL = ...@@ -7,8 +7,8 @@ NULL =
# SUBDIRS stores the directories where a "make" is required when building # SUBDIRS stores the directories where a "make" is required when building
# something. DIST_SUBDIRS stores the directories where nothing is built but # something. DIST_SUBDIRS stores the directories where nothing is built but
# which have makefiles with distribution information. # which have makefiles with distribution information.
SUBDIRS = intl . share po m4 SUBDIRS = intl modules . share po m4
DIST_SUBDIRS = $(SUBDIRS) modules src debian doc ipkg lib autotools DIST_SUBDIRS = $(SUBDIRS) src debian doc ipkg lib autotools
EXTRA_DIST = \ EXTRA_DIST = \
HACKING \ HACKING \
......
#! /bin/sh #! /bin/sh
## bootstrap file for the VLC media player ## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.52 2003/06/27 13:50:07 sam Exp $ ## $Id: bootstrap,v 1.53 2003/06/27 23:31:24 sam Exp $
## ##
## Authors: Sam Hocevar <sam@zoy.org> ## Authors: Sam Hocevar <sam@zoy.org>
...@@ -68,8 +68,8 @@ count=0 ...@@ -68,8 +68,8 @@ count=0
rm -f modules/Makefile.am && cat > modules/Makefile.am << EOF rm -f modules/Makefile.am && cat > modules/Makefile.am << EOF
# Autogenerated by bootstrap - DO NOT EDIT # Autogenerated by bootstrap - DO NOT EDIT
EXTRA_DIST = LIST EXTRA_DIST = LIST
SUBDIRS = . SUBDIRS = `sed -ne 's,modules/\([^/]*\)/Makefile,\1,p' configure.ac | xargs`
DIST_SUBDIRS = `sed -ne 's,modules/\([^/]*\)/Makefile,\1,p' configure.ac | xargs` #DIST_SUBDIRS = \$(SUBDIRS)
EOF EOF
for dir in `sed -ne 's,\(modules/.*\)/Makefile,\1,p' configure.ac` for dir in `sed -ne 's,\(modules/.*\)/Makefile,\1,p' configure.ac`
...@@ -91,8 +91,8 @@ noinst_LIBRARIES = ...@@ -91,8 +91,8 @@ noinst_LIBRARIES =
noinst_HEADERS = noinst_HEADERS =
EXTRA_DIST = Modules.am EXTRA_DIST = Modules.am
BUILT_SOURCES = BUILT_SOURCES =
SUBDIRS = . SUBDIRS = ${subdirs}
DIST_SUBDIRS = ${subdirs} #DIST_SUBDIRS = \$(SUBDIRS)
libvlcdir = \$(libdir)/vlc/${basedir} libvlcdir = \$(libdir)/vlc/${basedir}
include Modules.am include Modules.am
EOF EOF
......
vlc (0.6.0-1) unstable; urgency=low vlc (0.6.0+cvs-20030627-1) unstable; urgency=low
* New upstream release.
* debian/rules: * debian/rules:
+ Replaced $(DEB_BUILD_ARCH) with `dpkg-architecture -qDEB_BUILD_GNU_CPU` + Replaced $(DEB_BUILD_ARCH) with `dpkg-architecture -qDEB_BUILD_GNU_CPU`
so that the rules can be called directly. so that the rules can be called directly.
......
...@@ -156,9 +156,11 @@ Package: wxvlc ...@@ -156,9 +156,11 @@ Package: wxvlc
Architecture: any Architecture: any
Depends: vlc (= ${Source-Version}), ${shlibs:Depends} Depends: vlc (= ${Source-Version}), ${shlibs:Depends}
Provides: vlc-gui Provides: vlc-gui
Description: wxWindows frontend for VLC Description: wxWindows and skins frontends for VLC
This plugin adds a wxWindow interface to the VLC media player. To This plugin adds a wxWindow interface and a skinnable interface to the
activate it, use the `--intf wxwin' flag or run the `wxvlc' program. VLC media player. To activate the wxWindow GUI, use the `--intf wxwin'
flag or run the `wxvlc' program. To activate the skinnable GUI, use the
`--intf skins' flag.
Package: vlc-alsa Package: vlc-alsa
Architecture: any Architecture: any
......
...@@ -336,6 +336,10 @@ endif ...@@ -336,6 +336,10 @@ endif
ln -s vlc debian/wxvlc/usr/share/doc/wxvlc ln -s vlc debian/wxvlc/usr/share/doc/wxvlc
mv debian/vlc/usr/lib/vlc/gui/libwxwindows_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libwxwindows_plugin.so \
debian/wxvlc/usr/lib/vlc/gui/ debian/wxvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/lib/vlc/gui/libskins_plugin.so \
debian/wxvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/share/vlc/skins \
debian/wxvlc/usr/share/vlc/
ln -s vlc.1.gz debian/wxvlc/usr/share/man/man1/wxvlc.1.gz ln -s vlc.1.gz debian/wxvlc/usr/share/man/man1/wxvlc.1.gz
# Clean up # Clean up
......
...@@ -13,6 +13,12 @@ optim="@optim@" ...@@ -13,6 +13,12 @@ optim="@optim@"
plugins="@PLUGINS@" plugins="@PLUGINS@"
builtins="@BUILTINS@" builtins="@BUILTINS@"
cppflags="${cppflags} -DDEBUG"
cflags="${cflags} -g"
cxxflags="${cxxflags} -g"
objcflags="${objcflags} -g"
ldflags="${objcflags} -g"
cflags_tuning="@CFLAGS_TUNING@" cflags_tuning="@CFLAGS_TUNING@"
cflags_optim="@CFLAGS_OPTIM@" cflags_optim="@CFLAGS_OPTIM@"
cflags_optim_nodebug="@CFLAGS_OPTIM_NODEBUG@" cflags_optim_nodebug="@CFLAGS_OPTIM_NODEBUG@"
......
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