Update of /cvsroot/fink/dists/10.2/stable/main/finkinfo/graphics
In directory sc8-pr-cvs1:/tmp/cvs-serv23305/stable/main/finkinfo/graphics

Added Files:
        mplayer-0.90.0-1.info mplayer-0.90.0-1.patch 
        mplayer-font-arial-iso-8859-1-0.1-1.info 
        mplayer-skin-avifile-1.5-1.info mplayer-skin-blue-1.0-1.info 
        mplayer-skin-blue-small-1.0-1.info 
        mplayer-skin-default-1.7-1.info 
        mplayer-skin-default-1.7-2.info 
        mplayer-skin-midnight-love-1.5-1.info 
Log Message:
moving stuff to stable...

--- NEW FILE: mplayer-0.90.0-1.info ---
Package: mplayer
Version: 0.90.0
Revision: 1
BuildDepends: libdvdread4, libfame1, gtk+, glib, libpng3, aalib (>= 1.4rc5-2), libogg, 
libvorbis0, libdnet, libdv, mad, sdl, arts-dev (>= 1.1.0-2), dlcompat-dev, xmms
Depends: libdvdread4-shlibs, libfame1-shlibs, lame, ffmpeg, pth, x11, gtk+-shlibs, 
glib-shlibs, libpng3-shlibs, aalib-shlibs (>= 1.4rc5-2), sdl-shlibs, libogg-shlibs, 
libvorbis0-shlibs, mad-shlibs, lame-shlibs, libdnet-shlibs, lynx (>= 2.8.4-2) | 
lynx-ssl (>= 2.8.4-2), libdv-shlibs, arts (>= 1.1.0-2), mplayer-font, mplayer-skin
Source: http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-0.90.tar.bz2
Source-MD5: 9a9f294bbaab2071ecbc327f4e870be8
Patch: %f.patch
ConfigureParams: --with-extraincdir="%p/include/freetype -I%p/include" 
--with-extralibdir=%p/lib --enable-menu --disable-libfame --enable-libavcodec 
--disable-vidix --enable-gui --enable-mad --enable-gl --enable-sdl --enable-aa 
--enable-xv --enable-xinerama --enable-x11 --enable-smb --enable-dvdnav 
--disable-qtx-codecs --mandir="%p/share/man" --enable-largefiles 
--with-xmmslibdir="%p/lib" --with-xmmsplugindir="%p/lib/xmms" --enable-xmms
SetCFLAGS: -O3 -g -bind_at_load -prebind -prebind_allow_overlap
InstallScript: <<
  make install DESTDIR=%d
  mkdir -p %i/etc/mplayer
  cp etc/input.conf %i/etc/mplayer/input.conf  
  cp etc/example.conf %i/etc/mplayer/mplayer.conf
  rm -rf %i/share/%n/font
<<
DocFiles: DOCS/*.html DOCS/tech/*.txt
ConfFiles: <<
  %p/etc/mplayer/mplayer.conf
  %p/etc/mplayer/codecs.conf
  %p/etc/mplayer/input.conf
<<
Description: MPEG 1/2, .ogm and AVI movie player
DescDetail: <<
MPlayer is a movie and animation player based on the 0.2.0 version of
libmpeg2 (mpeg2dec) and the Avifile library. It uses mpeg2dec/libmpeg2
for MPEG decoding. The supported file formats are MPEG 1/2 (MPG, DAT,
BIN, VOB) and AVI/ASF/WMF(Mpeg/PCM/AC3/DivX/MS-ADPCM/aLaw audio,
MPEG4/DivX/Indeo/CVID/WMF video codecs and many more). It supports
hardware YUV colorspace conversion and scaling via mga_vid/syncfb
devices or the X11 Xv extension.
<<
DescPort: <<
X11 and xv vedoa modes do not work because of x-shm being screwed up in XDarwin
so no GUI modes are avail, though sdl works fine and is the default.

...Well, they might work now if you play with some system settings, but i forget 
which. :-/

Builds, but had to disable the quicktime codecs. need to look into porting faa2 to 
play mp4/AAC files.

Previously by Justin Hallett
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-0.90.0-1.patch ---
diff -uNbr MPlayer-0.90/configure MPlayer-0.90-new/configure
--- MPlayer-0.90/configure      Sat Mar 22 11:29:16 2003
+++ MPlayer-0.90-new/configure  Sat May 10 23:46:17 2003
@@ -29,9 +29,9 @@
   echo >> "$TMPLOG"
   cat "$TMPC" >> "$TMPLOG"
   echo >> "$TMPLOG"
-  echo "$_cc $_inc_extra $_ld_static $_ld_extra $TMPC -o $TMPO $@" >> "$TMPLOG"
+  echo "$_cc $CFLAGS $_inc_extra $_ld_static $_ld_extra $TMPC -o $TMPO $@" >> 
"$TMPLOG"
   rm -f "$TMPO"
-  ( $_cc $_inc_extra $_ld_static $_ld_extra "$TMPC" -o "$TMPO" "$@" ) >> "$TMPLOG" 
2>&1
+  ( $_cc $CFLAGS $_inc_extra $_ld_static $_ld_extra "$TMPC" -o "$TMPO" "$@" ) >> 
"$TMPLOG" 2>&1
   TMP="$?"
   echo >> "$TMPLOG"
   echo "ldd $TMPO" >> "$TMPLOG"
@@ -1747,6 +1747,10 @@
 cc_check -lsocket -lnsl && _ld_sock="-lsocket -lnsl"
 if test "$_ld_sock" ; then
   echores "yes (using $_ld_sock)"
+elif cc_check $_ld_sock -ldnet ; then
+  # NOTE: needed for Darwin at least
+  _ld_sock="$_ld_sock -ldnet"
+  echores "yes (using $_ld_sock)"
 else
   echores "no"
 fi
@@ -2207,6 +2211,16 @@
 else
   _def_shm='#undef HAVE_SHM'
 fi
+# Darwin Xfree86 has x-shm disabled thus shm has to be disabled
+if darwin ; then
+  if test `uname -r` > 5.9 ; then
+    _def_shm='#define HAVE_SHM 1'
+    _shm='yes (Darwin 6+/OSX 10.2+ supports SHM)'
+  else
+    _def_shm='#undef HAVE_SHM'
+    _shm='no (not supported by Darwin)'
+  fi
+fi
 echores "$_shm"
 
 
@@ -4697,7 +4711,7 @@
   fi
 
   _def_xmms='#define HAVE_XMMS 1'
-  _xmms_lib="${_xmmslibdir}/libxmms.so.1 -export-dynamic"
+  _xmms_lib="${_xmmslibdir}/libxmms.dylib"
 else
   _def_xmms='#undef HAVE_XMMS'
 fi

diff -uNbr MPlayer-0.90/etc/example.conf MPlayer-0.90-new/etc/example.conf
--- MPlayer-0.90/etc/example.conf       Sat Dec  7 15:31:37 2002
+++ MPlayer-0.90-new/etc/example.conf   Sat May 10 23:06:27 2003
@@ -8,13 +8,13 @@
 ## more flexibly here. See below.
 ##
 
-# vo=xv                        # To specify default video driver (see -vo help for
+vo=sdl                 # To specify default video driver (see -vo help for
                        # list)
 
-# ao=oss               # To specify default audio driver (see -ao help for
+ao=sdl                 # To specify default audio driver (see -ao help for
                        # list)
 
-fs=yes                 # Enlarges movie window to your desktop's size.
+fs=no                  # Enlarges movie window to your desktop's size.
                        # Used by drivers: all
 
 # vm=no                        # Tries to change to a different videomode
@@ -38,7 +38,7 @@
 ## Use GUI mode by default
 ##
 
-# gui = yes
+gui = yes
 
 ##
 ## Specify your preferred default skin here
@@ -46,7 +46,7 @@
 ##  and ~/.mplayer/Skin/yourskin)
 ##
 
-# skin = default
+skin = default
 
 ##
 ## Multiple languages are available :)
@@ -133,4 +133,4 @@
 ## Delete this default :)
 ##
 
-include = /home/gabucino/.mplayer/i_did_not_RTFM_carefully_enough...
+#include = /home/gabucino/.mplayer/i_did_not_RTFM_carefully_enough...
diff -uNbr MPlayer-0.90/libmpcodecs/ad_qtaudio.c 
MPlayer-0.90-new/libmpcodecs/ad_qtaudio.c
--- MPlayer-0.90/libmpcodecs/ad_qtaudio.c       Mon Mar 10 11:04:56 2003
+++ MPlayer-0.90-new/libmpcodecs/ad_qtaudio.c   Sat May 10 23:38:04 2003
@@ -176,15 +176,15 @@
     EnterMovies();
 #else
     if(loader_init()) return 0; // failed to load DLL
-#endif
     
     printf("loader_init DONE!\n");
 
-#if 1
     error = InitializeQTML(6+16);
     printf("InitializeQTML:%i\n",error);
     if(error) return 0;
+#endif
     
+#if 1
        OutputFormatInfo.flags = InputFormatInfo.flags = 0;
        OutputFormatInfo.sampleCount = InputFormatInfo.sampleCount = 0;
        OutputFormatInfo.buffer = InputFormatInfo.buffer = NULL;
@@ -324,3 +324,4 @@
 }
 
 #endif
+
diff -uNbr MPlayer-0.90/libmpcodecs/vf_fame.c MPlayer-0.90-new/libmpcodecs/vf_fame.c
--- MPlayer-0.90/libmpcodecs/vf_fame.c  Sun Sep 29 15:19:31 2002
+++ MPlayer-0.90-new/libmpcodecs/vf_fame.c      Sat May 10 23:06:27 2003
@@ -16,7 +16,7 @@
 #include "vf.h"
 
 //#include "../libvo/fastmemcpy.h"
-#include "../libfame/fame.h"
+#include <fame.h>
 
 struct vf_priv_s {
     unsigned char* outbuf;
diff -uNbr MPlayer-0.90/libvo/vo_sdl.c MPlayer-0.90-new/libvo/vo_sdl.c
--- MPlayer-0.90/libvo/vo_sdl.c Sun Apr  6 16:53:47 2003
+++ MPlayer-0.90-new/libvo/vo_sdl.c     Sat May 10 23:06:27 2003
@@ -896,7 +896,7 @@
                ||(strcmp(priv->driver, "directx") == 0)
                ||(strcmp(priv->driver, "Quartz") == 0)
                ||((strcmp(priv->driver, "aalib") == 0)
-               && priv->X)) {
+               && priv->X) || (strcmp(priv->driver, "Quartz") == 0)) {
                        if(verbose) printf("SDL: setting windowed mode\n");
             set_video_mode(priv->dstwidth, priv->dstheight, priv->bpp, 
priv->sdlflags);
                }

--- NEW FILE: mplayer-font-arial-iso-8859-1-0.1-1.info ---
Package: mplayer-font-arial-iso-8859-1
Version: 0.1
Revision: 1
Provides: mplayer-font
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2
Source-MD5: 6c3f032ddf401ca522900291de03fee5
NoSourceDirectory: true
CompileScript: echo "Unpacking..."
InstallScript: <<
  mkdir -p %i/share/mplayer/sub-fonts
  cp -r font-arial-24-iso-8859-1 font-arial-28-iso-8859-1 font-arial-18-iso-8859-1 
font-arial-14-iso-8859-1  %i/share/mplayer/sub-fonts
  ln -s %p/share/mplayer/sub-fonts/font-arial-14-iso-8859-1 %i/share/mplayer/font
  mkdir -p %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: README-arial-iso-8859-1
Description: Subtitle font for mplayer
DescDetail: <<
This package installs font-arial-14-iso-8859-1 as the subtitle font.
<<
DescUsage: <<
To change the font, create a new symlink from the font folder you want to use to 
%p/share/mplayer/font
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-skin-avifile-1.5-1.info ---
Package: mplayer-skin-avifile
Version: 1.5
Revision: 1
Provides: mplayer-skin
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www1.mplayerhq.hu/MPlayer/Skin/avifile-%v.tar.bz2
Source-MD5: a18d2282e5945243862fa765146c1b32
SourceDirectory: avifile
SourceRename: avifile-%v-%r.tar.bz2
CompileScript: echo "Unpacking..."
InstallScript: <<
  install -m 755 -d %i/share/mplayer/Skin/avifile
  install -m 644 *.png skin *.fnt %i/share/mplayer/Skin/avifile
  install -m 755 -d %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: VERSION README
Description: An avifile-like skin for mplayer
DescDetail: <<
MPlayer skin, with the look of aviplay :)
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-skin-blue-1.0-1.info ---
Package: mplayer-skin-blue
Version: 1.0
Revision: 1
Provides: mplayer-skin
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www1.mplayerhq.hu/MPlayer/Skin/Blue-%v.tar.bz2
Source-MD5: 2cd7baa4ea60c42251c3dceaab9ae9cb
SourceDirectory: Blue
SourceRename: Blue-%v-%r.tar.bz2
CompileScript: echo "Unpacking..."
InstallScript: <<
  install -m 755 -d %i/share/mplayer/Skin/Blue
  install -m 644 *.png skin *.fnt %i/share/mplayer/Skin/Blue
  install -m 755 -d %i/share/mplayer/Skin/Blue/icons
  install -m 644 icons/* %i/share/mplayer/Skin/Blue/icons
  install -m 755 -d %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: VERSION README
Description: Blue skin for mplayer
DescDetail: <<
The new default MPlayer skin.
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-skin-blue-small-1.0-1.info ---
Package: mplayer-skin-blue-small
Version: 1.0
Revision: 1
Provides: mplayer-skin
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www1.mplayerhq.hu/MPlayer/Skin/Blue-%v.tar.bz2
Source-MD5: 2cd7baa4ea60c42251c3dceaab9ae9cb
SourceDirectory: Blue
SourceRename: Blue-small-%v-%r.tar.bz2
CompileScript: echo "Unpacking..."
InstallScript: <<
  install -m 755 -d %i/share/mplayer/Skin/Blue-small
  install -m 644 *.png skin *.fnt %i/share/mplayer/Skin/Blue-small
  install -m 755 -d %i/share/mplayer/Skin/Blue-small/icons
  install -m 644 icons/* %i/share/mplayer/Skin/Blue-small/icons
  install -m 755 -d %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: VERSION README
Description: Blue skin for mplayer
DescDetail: <<
The new default MPlayer skin.
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-skin-default-1.7-1.info ---
Package: mplayer-skin-default
Version: 1.7
Revision: 2
Provides: mplayer-skin
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www1.mplayerhq.hu/MPlayer/Skin/default-%v.tar.bz2
Source-MD5: 2ab41a197fec2df1caddd97a00e7237f
SourceDirectory: default
SourceRename: default-%v-%r.tar.bz2
CompileScript: echo "Unpacking..."
InstallScript: <<
  install -m 755 -d %i/share/mplayer/Skin/default
  install -m 644 * %i/share/mplayer/Skin/default
  mkdir -p %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: VERSION README
Description: Default skin for mplayer
DescDetail: <<
This package provides a default gui skin for MPlayer.
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-skin-default-1.7-2.info ---
Package: mplayer-skin-default
Version: 1.7
Revision: 2
Provides: mplayer-skin
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www1.mplayerhq.hu/MPlayer/Skin/default-%v.tar.bz2
Source-MD5: 2ab41a197fec2df1caddd97a00e7237f
SourceDirectory: default
SourceRename: default-%v-%r.tar.bz2
CompileScript: echo "Unpacking..."
InstallScript: <<
  install -m 755 -d %i/share/mplayer/Skin/default
  install -m 644 * %i/share/mplayer/Skin/default
  mkdir -p %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: VERSION README
Description: Default skin for mplayer
DescDetail: <<
This package provides a default gui skin for MPlayer.
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/

--- NEW FILE: mplayer-skin-midnight-love-1.5-1.info ---
Package: mplayer-skin-midnight-love
Version: 1.5
Revision: 1
Provides: mplayer-skin
Conflicts: mplayer ( <= 0.90pre10 )
Replaces: mplayer ( <= 0.90pre10 )
Source: http://www1.mplayerhq.hu/MPlayer/Skin/MidnightLove-%v.tar.bz2
Source-MD5: 8e7614b366d25622197997344149747c
SourceDirectory: MidnightLove
SourceRename: MidnightLove-%v-%r.tar.bz2
CompileScript: echo "Unpacking..."
InstallScript: <<
  install -m 755 -d %i/share/mplayer/Skin/MidnightLove
  install -m 644 *.png skin *.fnt %i/share/mplayer/Skin/MidnightLove
  install -m 755 -d %i/share/doc/%n
  echo "This is licensed under the GPL. for more information, please see the docs for 
mplayer." > %i/share/doc/%n/COPYRIGHT
<<
DocFiles: VERSION README
Description: Midnight Love skin for mplayer
DescDetail: <<
MPlayer conversion of the nice WinAMP/XMMS skin of Rei Ayanami.
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.mplayerhq.hu/




-------------------------------------------------------
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to