Author: chris
Date: Mon Nov 27 21:10:37 2006
New Revision: 274

URL: 
<http://svn.finkproject.org/websvn/listing.php?sc=1&rev=274&repname=user%3a+chris>
Log:
new version

Modified:
    trunk/finkinfo/graphics/mplayer.info
    trunk/finkinfo/graphics/mplayer.patch

Modified: trunk/finkinfo/graphics/mplayer.info
URL: 
<http://svn.finkproject.org/websvn/diff.php?path=/trunk/finkinfo/graphics/mplayer.info&rev=274&repname=user%3a+chris>
==============================================================================
--- trunk/finkinfo/graphics/mplayer.info (original)
+++ trunk/finkinfo/graphics/mplayer.info Mon Nov 27 21:10:37 2006
@@ -1,7 +1,7 @@
 Package: mplayer
-Version: 1.0.0pre6a
-Revision: 10
-Source: mirror:custom:MPlayer-1.0pre6a.tar.bz2
+Version: 1.0.0rc1
+Revision: 1
+Source: mirror:custom:MPlayer-1.0rc1.tar.bz2
 CustomMirror: <<
   eur-HU: http://www1.mplayerhq.hu/MPlayer/releases/
   eur-HU: http://www2.mplayerhq.hu/MPlayer/releases/
@@ -14,7 +14,7 @@
   eur-BG: ftp://ftp8.mplayerhq.hu/MPlayer/releases/
 <<
 
-Source-MD5: a812d945b884c2e2fa7f90c57cd76bff
+Source-MD5: 18c05d88e22c3b815a43ca8d7152ccdc
 
 BuildDepends: lame, gtk+, glib, libpng3, aalib (>= 1.4rc5-2), libogg, 
libvorbis0, libdv4, libmad, sdl, arts-dev (>= 1.1.0-2), libgettext3-dev, 
gettext-bin, gettext-tools, libiconv-dev, xvidcore, x11-dev, fink (>= 
0.17.0-1), xmms, libjpeg, giflib, glib2, esound, audiofile
 
@@ -28,10 +28,14 @@
 #!/bin/bash -e
 touch .developer
 patch -p1 < %a/%n.patch
-perl -pi -e 's/#elif defined\(__FreeBSD__\) \|\| defined\(__bsdi__\)/#elif 
defined\(__FreeBSD__\) \|\| defined\(__bsdi__\) \|\| defined\(__APPLE__\)/' 
libmpdemux/cddb.c
+perl -pi -e 's/#elif defined\(__FreeBSD__\) \|\| 
defined\(__DragonFly__\)/#elif defined\(__FreeBSD__\) \|\| 
defined\(__DragonFly__\) \|\| defined\(__APPLE__\)/' stream/stream_cddb.c
 <<
 
-ConfigureParams: --with-extralibdir="%p/lib" --with-extraincdir="%p/include" 
--mandir="%p/share/man" --enable-menu --enable-gui --disable-cpu-optimization 
--disable-altivec --enable-xmms --disable-cdparanoia
+ConfigureParams: --with-extralibdir="%p/lib" --with-extraincdir="%p/include" 
--mandir="%p/share/man" --enable-menu --enable-gui --enable-xmms 
--disable-cdparanoia --enable-altivec --enable-runtime-cpudetection 
--disable-libcdio
+
+CompileScript: <<
+  CFLAGS="-mcpu=G3 -mtune=G4 -fast -fomit-frame-pointer -fmodulo-sched 
-fsched-spec-load" ./configure %c
+<<
 
 InstallScript: <<
   make install DESTDIR=%d

Modified: trunk/finkinfo/graphics/mplayer.patch
URL: 
<http://svn.finkproject.org/websvn/diff.php?path=/trunk/finkinfo/graphics/mplayer.patch&rev=274&repname=user%3a+chris>
==============================================================================
--- trunk/finkinfo/graphics/mplayer.patch (original)
+++ trunk/finkinfo/graphics/mplayer.patch Mon Nov 27 21:10:37 2006
@@ -1,60 +1,3 @@
-diff -ruN -x CVS mplayer/configure mplayer.new/configure
---- mplayer/configure  2006-04-27 22:59:28.000000000 -0400
-+++ mplayer.new/configure      2006-04-28 15:54:21.000000000 -0400
-@@ -354,6 +354,7 @@
- 
- Miscellaneous options:
-   --enable-runtime-cpudetection    Enable runtime CPU detection [disable]
-+  --disable-cpu-optimization       Disable gcc CPU build optimization [enable]
-   --enable-cross-compile Enable cross-compilation [autodetect]
-   --cc=COMPILER          use this C compiler to build MPlayer [gcc]
-   --host-cc=COMPILER     use this C compiler to build apps needed for the 
build process [gcc]
-@@ -458,6 +459,7 @@
- test "$CC" && _cc="$CC"
- _as=auto
- _runtime_cpudetection=no
-+_cpu_optimization=yes
- _cross_compile=auto
- for ac_option do
-   case "$ac_option" in
-@@ -500,6 +502,12 @@
-   --disable-runtime-cpudetection)
-     _runtime_cpudetection=no
-     ;;
-+  --disable-cpu-optimization)
-+    _cpu_optimization=no
-+    ;;
-+  --enable-cpu-optimization)
-+    _cpu_optimization=yes
-+    ;;
-   --enable-cross-compile)
-     _cross_compile=yes
-     ;;
-@@ -1238,6 +1246,7 @@
- 
-     echocheck "GCC & CPU optimization abilities"
- 
-+    if test "$_cpu_optimization" = yes; then
-     if test -n "$proc"; then
-         case "$proc" in
-           601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
-@@ -1282,6 +1291,7 @@
-           esac
-       fi
-     fi
-+    fi
- 
-     if test -n "$_mcpu"; then
-         _optimizing=`echo $_mcpu | cut -c 8-`
-@@ -1678,6 +1688,8 @@
-   --with-extralibdir=*) ;;
-   --enable-runtime-cpudetection) ;;
-   --disable-runtime-cpudetection) ;;
-+  --enable-cpu-optimization) ;;
-+  --disable-cpu-optimization) ;;
-   --enable-cross-compile) ;;
-   --disable-cross-compile) ;;
-   --install-path=*) ;;
 diff -ruN -x CVS mplayer/debian/config mplayer.new/debian/config
 --- mplayer/debian/config      2006-02-27 08:35:13.000000000 -0500
 +++ mplayer.new/debian/config  2006-04-28 16:06:18.000000000 -0400
@@ -166,3 +109,14 @@
   configuration with this program?  If you say "Yes", I'll go ahead and
   delete your old configuration and you can create it anew with this
   program.  If you say "No" I'm going to exit now since you don't want
+--- mplayer/configure  2006-10-22 18:32:31.000000000 -0400
++++ mplayer.new/configure      2006-11-27 11:05:59.000000000 -0500
+@@ -3577,7 +3577,7 @@
+ EOF
+   if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; 
then 
+     _macosx=yes
+-    _macosx_frameworks="-framework Carbon -framework QuickTime -framework 
CoreAudio -framework AudioUnit -framework AudioToolbox"
++    _macosx_frameworks="-framework Carbon -framework QuickTime -framework 
CoreAudio -framework AudioUnit -framework AudioToolbox -framework IOKit"
+     _def_macosx='#define MACOSX 1'
+     _aosrc="$_aosrc ao_macosx.c"
+     _aomodules="macosx $_aomodules"


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to