Commit 63f76f94 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* NEWS: added some more stuff for the upcoming 0.6.1

* vlc.ebuild: removed xvid and added the debug USE variable. Also some formatting fixes.
parent bafd6742
$Id: NEWS,v 1.55 2003/07/11 23:36:01 gbazin Exp $ $Id: NEWS,v 1.56 2003/07/19 00:02:35 hartman Exp $
Changes between 0.6.0 and 0.6.1: Changes between 0.6.0 and 0.6.1:
--------------------------------- ---------------------------------
...@@ -7,17 +7,21 @@ Stream output: ...@@ -7,17 +7,21 @@ Stream output:
* Added vorbis audio support in Ogg streaming. * Added vorbis audio support in Ogg streaming.
* Added vorbis audio transcoding support. * Added vorbis audio transcoding support.
* Added mp3 audio transcoding support (when ffmpeg is compiled with mp3lame). * Added mp3 audio transcoding support (when ffmpeg is compiled with mp3lame).
* PS muxer can create mpeg1 files now and produce streams with system headers.
* You can transcode a52 with more than two channels to mpga now.
Win32 port: Win32 port:
* Fixed DVD support which was partly broken due to a bug in libdvdcss * Fixed DVD support which was partly broken due to a bug in libdvdcss
* Fixed 5.1 audio support for the sblive/audigy soundcards. * Fixed 5.1 audio support for the sblive/audigy soundcards.
* Fixed sound on Windows NT.
UNIX ports: UNIX ports:
* Fixed/improved alsa support and enabled multi-channel audio output. * Fixed/improved alsa support and enabled multi-channel audio output.
Interfaces: Interfaces:
* Small updates/fixes to the wxWindows interface. * Small updates/fixes to the wxWindows interface.
* Improved HTTP remote control interface. * Improved HTTP remote control interface. You can now create your own HTML pages.
* A new CORBA control plugin.
Input demux: Input demux:
* Improved support for the Matroska container format. * Improved support for the Matroska container format.
...@@ -26,6 +30,9 @@ Miscellaneous: ...@@ -26,6 +30,9 @@ Miscellaneous:
* Improved build system. * Improved build system.
* New video filter plugin to overlay logos. * New video filter plugin to overlay logos.
* Added support for Winamp 3 B4S files. * Added support for Winamp 3 B4S files.
* New subtitle module which uses freetype2 to render arbitrary fonts in any size.
Should also work with languages like russion for instance.
Changes between 0.5.3 and 0.6.0: Changes between 0.5.3 and 0.6.0:
--------------------------------- ---------------------------------
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# vlc.ebuild: A Gentoo ebuild for vlc # vlc.ebuild: A Gentoo ebuild for vlc
############################################################################### ###############################################################################
# Copyright (C) 2003 VideoLAN # Copyright (C) 2003 VideoLAN
# $Id: vlc.ebuild,v 1.14 2003/07/18 20:16:53 hartman Exp $ # $Id: vlc.ebuild,v 1.15 2003/07/19 00:02:35 hartman Exp $
# #
# Authors: Derk-Jan Hartman <thedj at users.sf.net> # Authors: Derk-Jan Hartman <thedj at users.sf.net>
# #
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
# Thanks to the Gentoo Team for supporting us. # Thanks to the Gentoo Team for supporting us.
############################################################################### ###############################################################################
IUSE="arts qt ncurses dvd gtk nls 3dfx matrox svga fbcon esd kde X alsa ggi oggvorbis gnome xv oss sdl fbcon aalib slp truetype v4l xvid lirc wxwindows imlib matroska dvb pvr mozilla mad" IUSE="arts qt ncurses dvd gtk nls 3dfx matrox svga fbcon esd kde X alsa ggi oggvorbis gnome xv oss sdl fbcon aalib slp truetype v4l lirc wxwindows imlib matroska dvb pvr mozilla mad debug"
# Change these to correspond with the # Change these to correspond with the
# unpacked dirnames of the CVS snapshots. # unpacked dirnames of the CVS snapshots.
...@@ -239,6 +239,10 @@ src_compile(){ ...@@ -239,6 +239,10 @@ src_compile(){
XPIDL=/usr/bin/xpidl" XPIDL=/usr/bin/xpidl"
fi fi
use debug \
&& myconf="${myconf} --enable-debug" \
|| myconf="${myconf} --enable-release"
# vlc uses its own ultraoptimizaed CXXFLAGS # vlc uses its own ultraoptimizaed CXXFLAGS
# and forcing custom ones generally fails building # and forcing custom ones generally fails building
export CXXFLAGS="" export CXXFLAGS=""
...@@ -253,10 +257,10 @@ src_compile(){ ...@@ -253,10 +257,10 @@ src_compile(){
touch config.h.in touch config.h.in
touch `find . -name Makefile.in` touch `find . -name Makefile.in`
myconf="${myconf} --enable-ffmpeg --with-ffmpeg-tree=${SFFMPEG} --with-ffmpeg-mp3lame \ myconf="${myconf} --enable-ffmpeg --with-ffmpeg-tree=${SFFMPEG} \
--with-ffmpeg-mp3lame \
--enable-libmpeg2 --with-libmpeg2-tree=${SLIBMPEG2} \ --enable-libmpeg2 --with-libmpeg2-tree=${SLIBMPEG2} \
--enable-dvbpsi \ --enable-dvbpsi \
--enable-release \
--enable-faad \ --enable-faad \
--enable-flac \ --enable-flac \
--enable-a52" --enable-a52"
......
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