[cvs] dists/10.4/stable/main/finkinfo/crypto ekiga.info,1.1,1.2

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv5429

Modified Files:
ekiga.info 
Log Message:
depends on seamonkey2 which is arch restricted

Index: ekiga.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto/ekiga.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ekiga.info  13 Feb 2012 19:24:22 -  1.1
+++ ekiga.info  16 Mar 2012 13:33:35 -  1.2
@@ -1,6 +1,8 @@
 Package: ekiga
 Version: 3.1.2
 Revision: 3
+## Depends on seamonkey2 which is arch restricted
+Architecture: i386, powerpc
 Maintainer: None fink-de...@lists.sourceforge.net
 GCC: 4.0
 BuildDepends: 


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome pino.info,1.3,NONE

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory vz-cvs-3.sog:/tmp/cvs-serv11701

Removed Files:
pino.info 
Log Message:
killing pino, which doesn't build because it's incompatible with fink's vala 
package on which it relies. Upstream appears long dead and debian's patch-sets 
don't fix all the build-failures


--- pino.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/crypto pwlib1.info, 1.2, 1.3 pwlib1.patch, 1.1, 1.2

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv14121

Modified Files:
pwlib1.info pwlib1.patch 
Log Message:
remove old SDL Dist restriction and add x86_64 build capability

Index: pwlib1.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto/pwlib1.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- pwlib1.patch26 Jan 2012 22:00:43 -  1.1
+++ pwlib1.patch16 Mar 2012 15:58:32 -  1.2
@@ -9,3 +9,136 @@
  
  
  PCREATE_SOUND_PLUGIN(CoreAudio, PSoundChannelCoreAudio);
+@@ -1337,7 +1338,7 @@
+ 
+//calculate size of ABL given the last field, assum non-interleaved 
+   UInt32 mChannelsPerFrame = hwASBD.mChannelsPerFrame;
+-  UInt32 propsize = (UInt32) (((AudioBufferList 
*)0)-mBuffers[mChannelsPerFrame]);
++  UInt32 propsize = sizeof(AudioBuffer) * mChannelsPerFrame + 
sizeof(AudioBufferList);
+ 
+//malloc buffer lists
+mInputBufferList = (AudioBufferList *)malloc(propsize);
+@@ -1372,7 +1373,7 @@
+ 
+//calculate number of buffers from channels
+mChannelsPerFrame = pwlibASBD.mChannelsPerFrame;
+-   propsize = (UInt32) (((AudioBufferList *)0)-mBuffers[mChannelsPerFrame]);
++   propsize = sizeof(AudioBuffer) * mChannelsPerFrame + 
sizeof(AudioBufferList);
+ 
+//malloc buffer lists
+mOutputBufferList = (AudioBufferList *)malloc(propsize);
+--- a/src/ptlib/unix/svcproc.cxx   2012-03-16 10:44:21.0 -0400
 b/src/ptlib/unix/svcproc.cxx   2007-10-19 02:22:32.0 -0400
+@@ -388,7 +388,7 @@
+ #elif defined(BE_THREADS)
+   thread_id tid = ::find_thread(NULL);
+ #else
+-  unsigned tid = (unsigned) pthread_self();
++  unsigned tid = (unsigned long) pthread_self();
+ #endif
+   *out  ThreadID=0x
+ setfill('0')  ::hex
+@@ -938,7 +938,7 @@
+ #elif defined(BE_THREADS)
+   thread_id tid = ::find_thread(NULL);
+ #else
+-  unsigned tid = (unsigned) pthread_self();
++  unsigned tid = (unsigned long) pthread_self();
+ #endif
+   PThread * thread_ptr = activeThreads.GetAt(tid);
+ 
+--- a/src/ptlib/unix/tlibthrd.cxx  2012-03-16 10:44:21.0 -0400
 b/src/ptlib/unix/tlibthrd.cxx  2007-10-19 02:22:32.0 -0400
+@@ -754,7 +754,7 @@
+ {
+   PWaitAndSignal m(threadMutex);
+ 
+-  if (!activeThreads.Contains((unsigned)id)) 
++  if (!activeThreads.Contains((unsigned long)id)) 
+ return FALSE;
+ 
+   return pthread_kill(id, sig) == 0;
+@@ -792,7 +792,7 @@
+ #endif
+ 
+   ((PProcess *)this)-activeThreads.DisallowDeleteObjects();
+-  ((PProcess *)this)-activeThreads.SetAt((unsigned)PX_threadId, this);
++  ((PProcess *)this)-activeThreads.SetAt((unsigned long)PX_threadId, this);
+ 
+   PX_firstTimeStart = FALSE;
+ 
+@@ -906,7 +906,7 @@
+   PAssertPTHREAD(pthread_create, (PX_threadId, threadAttr, PX_ThreadStart, 
this));
+ 
+   // put the thread into the thread list
+-  process.activeThreads.SetAt((unsigned)PX_threadId, this);
++  process.activeThreads.SetAt((unsigned long)PX_threadId, this);
+   if (process.activeThreads.GetSize()  highWaterMark)
+ newHighWaterMark = highWaterMark = process.activeThreads.GetSize();
+ 
+@@ -1229,7 +1229,7 @@
+ {
+   PProcess  process = PProcess::Current();
+   process.threadMutex.Wait();
+-  PThread * thread = process.activeThreads.GetAt((unsigned)pthread_self());
++  PThread * thread = process.activeThreads.GetAt((unsigned 
long)pthread_self());
+   process.threadMutex.Signal();
+   return thread;
+ }
+@@ -1362,7 +1362,7 @@
+   }  
+ 
+  // remove this thread from the active thread list
+-  process.activeThreads.SetAt((unsigned)id, NULL);
++  process.activeThreads.SetAt((unsigned long)id, NULL);
+ 
+   // delete the thread if required, note this is done this way to avoid
+   // a race condition, the thread ID cannot be zeroed before the if!
+@@ -1562,7 +1562,7 @@
+   
+   PAssertPTHREAD(pthread_mutex_unlock, (semCreationMutex));
+   
+-  PAssert(((int)sem != SEM_FAILED), Couldn't create named semaphore);
++  PAssert((sem != (sem_t *)SEM_FAILED), Couldn't create named semaphore);
+   return sem;
+ }
+ #endif
+--- a/src/ptlib/common/osutils.cxx 2005-12-04 17:43:30.0 -0500
 b/src/ptlib/common/osutils.cxx 2012-03-16 11:11:48.0 -0400
+@@ -2145,9 +2145,9 @@
+ void PThread::SetThreadName(const PString  name)
+ {
+   if (name.IsEmpty())
+-threadName = psprintf(%s:%08x, GetClass(), (INT)this);
++threadName = psprintf(%s:%08x, GetClass(), (long INT)this);
+   else
+-threadName = psprintf(name, (INT)this);
++threadName = psprintf(name, (long INT)this);
+ 
+ #if defined(_DEBUG)  defined(_MSC_VER)
+   if (threadId) {   // make thread name known to debugger
+@@ -2356,21 +2356,21 @@
+ PReadWriteMutex::Nest * PReadWriteMutex::GetNest() const
+ {
+   PWaitAndSignal mutex(nestingMutex);
+-  return 

[cvs] dists/10.4/unstable/main/finkinfo/x11 wine.info,1.28,NONE

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv25805/unstable/main/finkinfo/x11

Removed Files:
wine.info 
Log Message:
latest wine looks fine, send to stable


--- wine.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/x11 wine.info,1.2,1.3

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv25805/stable/main/finkinfo/x11

Modified Files:
wine.info 
Log Message:
latest wine looks fine, send to stable


Index: wine.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11/wine.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- wine.info   10 Aug 2011 21:14:59 -  1.2
+++ wine.info   16 Mar 2012 16:20:29 -  1.3
@@ -1,10 +1,11 @@
 Package: wine
-Version: 1.1.44
+Version: 1.3.21
 Revision: 1
 Description: Microsoft Windows compatibility layer
 License: LGPL
 Maintainer: Damian Dimmich dam...@tauri-tec.com
 #Previous maintainer: Robert Cusick bobn...@gmail.com
+#Additions by Max Horn
 # This version updated by Damian Dimmich
 
 #Much love to costabel, jfmertens, and other finkers for rebooting this 
package.
@@ -17,18 +18,20 @@
 # See Wine's documentation/PACKAGING file for more details about dependencies.
 # I may have gone overboard on these dependencies, but better safe than sorry.
 BuildDepends: 
- arts-dev, audiofile, bison, dbus-dev, esound, fontconfig2-dev, flex-devel (= 
2.5.33),
- fontforge, freetype219, gcc4.0, giflib | libungif,
- glib2-dev, jack-dev, lcms, lcms-bin, libgettext8-dev, libiconv-dev, 
libicu36-dev,
- libjpeg8, libusb, libxml2, libxml2-bin, libxslt, libxslt-bin,
- openldap24-dev,  system-openssl-dev, sane-backends-dev, x11-dev, libgphoto2
+ bison, dbus-dev, fontconfig2-dev, flex-devel (= 2.5.33),
+ freetype219, giflib | libungif,
+ glib2-dev, lcms, lcms-bin, libgettext8-dev, libiconv-dev, libicu36-dev,
+ libjpeg8, libusb, libxml2 (=2.6.21), libxml2-bin (=2.6.21), libxslt, 
libxslt-bin,
+ openldap24-dev, system-openssl-dev, sane-backends-dev, x11-dev, libgphoto2,
+ glib2-dev
 
 Depends: 
- arts-shlibs, audiofile-shlibs, dbus-shlibs, esound-shlibs, fontconfig2-shlibs,
+ dbus-shlibs, fontconfig2-shlibs,
  freetype219-shlibs, giflib-shlibs | libungif-shlibs,
- glib2-shlibs, jack-shlibs, lcms-shlibs, libgettext8-shlibs, libiconv, 
libjpeg8-shlibs,
- libusb-shlibs, libxml2-shlibs, libxslt-shlibs,
- openldap24-shlibs,  sane-backends-shlibs, x11, libgphoto2-shlibs
+ glib2-shlibs, lcms-shlibs, libgettext8-shlibs, libiconv,
+ libjpeg8-shlibs, libusb-shlibs, libxml2-shlibs, libxslt-shlibs,
+ openldap24-shlibs, sane-backends-shlibs, x11, libgphoto2-shlibs, 
+ glib2-shlibs
 
 Recommends: 
  msttcorefonts
@@ -36,18 +39,33 @@
 BuildConflicts: 
  flex (= 1:2.5.33-1)
 
+Conflicts: 
+ wine-stable
+
+Replaces: 
+ wine-stable
+
 Source: mirror:sourceforge:%n/%n-%v.tar.bz2
-Source-MD5: f18649bd71b9099fecad22436d239cba
+Source-MD5: dfcefe48a9aae82f7f1aa4d2c6617961
 
 NoSetCPPFLAGS: true
-SetCPPFLAGS: -DDBUS_API_SUBJECT_TO_CHANGE
 NoSetLDFLAGS: true
-SetLIBRARY_PATH: %p/lib/mesa:%p/lib
-ConfigureParams: --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
+SetLIBRARY_PATH: %p/lib
+ConfigureParams: 
+  --x-includes=/usr/X11/include \
+  --x-libraries=/usr/X11/lib \
+  --without-esd \
+  --without-gnutls \
+  --without-gstreamer \
+  --without-jack \
+  --without-mpg123 \
+  --without-openal \
+  --disable-win16
+
 # A custom CompileScript is necessary for the extra make depend step
 CompileScript: 
 #!/bin/sh -ev
- export 
CPATH=%p/include/dbus-1.0:%p/lib/dbus-1.0/include:%p/include:/usr/X11R6/include
+ export 
CPATH=%p/include/dbus-1.0:%p/lib/dbus-1.0/include:%p/include:/usr/X11/include
  export LDFLAGS=-L/%p/lib/system-openssl/lib
  export LD_LIBRARY_PATH=%p/lib
  export CPPFLAGS=-I/%p/lib/system-openssl/include
@@ -56,7 +74,7 @@
  mv AUTHORS.tmp AUTHORS
  # change the library detection so that the full path name of the library is 
retained
  perl -pi.bak -e 's|\^\.\*\\\/\\\(lib|^[^\\/]*\\\(.*lib|g' configure
- ./configure %c  --disable-win16 --without-openal
+ ./configure %c
  # small safety measure: preventing libSystem from coming up too early in the 
link line (and hence also in load commands)
  # (specifically for wineesd.drv.so winearts.drv.so sane.ds.so and 
msxml3.dll.so).
  # For further safety, we can then as well remove the remaining -L%p/lib and 
-I%p/include flags ...
@@ -69,11 +87,9 @@
 
 DocFiles: ANNOUNCE AUTHORS COPYING.LIB LICENSE README VERSION
 DescPort: 
-Didn't find dbus/dbus.h : added %p/include/dbus-1.0:%p/lib/dbus-1.0/include 
to search path, and required CPPFLAGS
-fontconfig.h : added /usr/X11R6/include
-Use mesa because GL/gl.h in some versions of Apple's X11 is too old. But then 
to be safe mesa has also
-to substitute for the glut or freeglut dep; thus put mesa in every path before 
%p and before /usr/X11R6.
-#on 10.5/10.6 this should no longer be an issue.
+Didn't find dbus/dbus.h : added %p/include/dbus-1.0:%p/lib/dbus-1.0/include
+to search path, and required CPPFLAGS
+fontconfig.h : added /usr/X11/include
 
 
 DescDetail: 
@@ -84,36 +100,27 @@
 feel to other applications on your desktop.
 
 DescUsage: 
-Wine uses X Windows for its 

[cvs] dists/10.4/unstable/main/finkinfo/x11 wine-stable.info, 1.2, NONE

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv1198/unstable/main/finkinfo/x11

Removed Files:
wine-stable.info 
Log Message:
wine-stable to stable; besides being self-evidently true, apparently intent is 
to track two separate release streams


--- wine-stable.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/x11 wine-stable.info,NONE,1.1

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv1198/stable/main/finkinfo/x11

Added Files:
wine-stable.info 
Log Message:
wine-stable to stable; besides being self-evidently true, apparently intent is 
to track two separate release streams


--- NEW FILE: wine-stable.info ---
Package: wine-stable
Version: 1.2.2
Revision: 1
Description: Microsoft Windows compatibility layer
License: LGPL
Maintainer: Damian Dimmich dam...@tauri-tec.com
#Previous maintainer: Robert Cusick bobn...@gmail.com
# This version updated by Damian Dimmich

#Much love to costabel, jfmertens, and other finkers for rebooting this package.
#
# Does not compile on PowerPC.
# error: encode_type: VT_USERDEFINED - unhandled type 17
Architecture: i386
# Trevor writes:
# According to the Wine README, any GCC higher than 2.7.2 should work, but only 
GCC 4.x has been tested.
# See Wine's documentation/PACKAGING file for more details about dependencies.
# I may have gone overboard on these dependencies, but better safe than sorry.
BuildDepends: 
 bison, dbus-dev, fontconfig2-dev, flex-devel (= 2.5.33),
 fontforge, freetype219, gcc44, giflib | libungif,
 glib2-dev, lcms, lcms-bin, libgettext8-dev, libiconv-dev, libicu36-dev,
 libjpeg8, libusb, libxml2, libxml2-bin, libxslt, libxslt-bin,
 openldap24-dev,  system-openssl-dev, sane-backends-dev, x11-dev, libgphoto2

Depends: 
 dbus-shlibs, fontconfig2-shlibs,
 freetype219-shlibs, giflib-shlibs | libungif-shlibs,
 glib2-shlibs, lcms-shlibs, libgettext8-shlibs, libiconv, libjpeg8-shlibs,
 libusb-shlibs, libxml2-shlibs, libxslt-shlibs,
 openldap24-shlibs,  sane-backends-shlibs, x11, libgphoto2-shlibs

Recommends: 
 msttcorefonts

BuildConflicts: 
 flex (= 1:2.5.33-1)

Conflicts: 
 wine

Replaces: 
 wine

Source: mirror:sourceforge:wine/wine-%v.tar.bz2
Source-MD5: e976d64688e0833061e79efa3eac5d2c

NoSetCPPFLAGS: true
SetCPPFLAGS: -DDBUS_API_SUBJECT_TO_CHANGE
NoSetLDFLAGS: true
SetLIBRARY_PATH: %p/lib
ConfigureParams: 
  --x-includes=/usr/X11/include \
  --x-libraries=/usr/X11/lib \
  --without-esd \
  --without-jack \
  --without-openal \
  --without-mpg123 \
  --without-gstreamer \
  --disable-win16

# A custom CompileScript is necessary for the extra make depend step
CompileScript: 
#!/bin/sh -ev
 export 
CPATH=%p/include/dbus-1.0:%p/lib/dbus-1.0/include:%p/include:/usr/X11/include
 export LDFLAGS=-L/%p/lib/system-openssl/lib
 export LD_LIBRARY_PATH=%p/lib
 export CPPFLAGS=-I/%p/lib/system-openssl/include
 # strip out all non ascii to something that sed and gcc script will eat
 tr -cd '\11\12\40-\176' AUTHORS AUTHORS.tmp
 mv AUTHORS.tmp AUTHORS
 # change the library detection so that the full path name of the library is 
retained
 perl -pi.bak -e 's|\^\.\*\\\/\\\(lib|^[^\\/]*\\\(.*lib|g' configure
 ./configure %c
 # small safety measure: preventing libSystem from coming up too early in the 
link line (and hence also in load commands)
 # (specifically for wineesd.drv.so winearts.drv.so sane.ds.so and 
msxml3.dll.so).
 # For further safety, we can then as well remove the remaining -L%p/lib and 
-I%p/include flags ...
 perl -pi.bak -e 's,\-L%p/lib ,,g; s:\-I%p/include( |,):\1:g; 
s,\-l(m|dl|pthread)([^a-z]),\2,g' config.status
 ./config.status
 make depend
 make

Shlibs: %p/lib/libwine.1.dylib 1.0.0 %n (= 0.9.21-3)

DocFiles: ANNOUNCE AUTHORS COPYING.LIB LICENSE README VERSION
DescPort: 
Didn't find dbus/dbus.h : added %p/include/dbus-1.0:%p/lib/dbus-1.0/include 
to search path, and required CPPFLAGS
fontconfig.h : added /usr/X11/include
Use mesa because GL/gl.h in some versions of Apple's X11 is too old. But then 
to be safe mesa has also
to substitute for the glut or freeglut dep; thus put mesa in every path before 
%p and before /usr/X11.
#on 10.5/10.6 this should no longer be an issue.


DescDetail: 
Wine is a translation layer (a program loader) capable of running Windows
applications on Linux and other POSIX compatible operating systems. Windows
programs running in Wine act as native programs would, running without the
performance or memory usage penalties of an emulator, with a similar look and
feel to other applications on your desktop.

DescUsage: 
For best results install an update X server such as XQuartz from
http://xquartz.macosforge.org/trac/wiki
#Also, Wine is unable to find the FreeType libraries unless you add Fink's lib
#directory to the library path. For example:
#
#  export LD_LIBRARY_PATH=%p/lib
#
# Adding export DYLD_LIBRARY_PATH=%p/lib/freetype219/lib seemed to give better
# results - Damian

Another note: The ~/.wine directory is supposed to be created and set up
automatically the first time you launch Wine. However, I have experienced
wineserver: could not save registry branch errors during the initial launch.
To fix this problem, run wineprefixcreate before launching Wine. This should
create the ~/.wine directory and populate it with the necessary files. You may
still see error messages, but the directory will be 

[cvs] dists/10.4/unstable/main/finkinfo/x11 winetricks.info, 1.5, NONE winetricks.patch, 1.2, NONE

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv1305/unstable/main/finkinfo/x11

Removed Files:
winetricks.info winetricks.patch 
Log Message:
Silly winerabbit, winetricks are for kids! And also for stable


--- winetricks.info DELETED ---

--- winetricks.patch DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/x11 winetricks.info, NONE, 1.1 winetricks.patch, NONE, 1.1

2012-03-16 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv1305/stable/main/finkinfo/x11

Added Files:
winetricks.info winetricks.patch 
Log Message:
Silly winerabbit, winetricks are for kids! And also for stable


--- NEW FILE: winetricks.info ---
Package: winetricks
Version: 20100921
Revision: 1
Architecture: i386
Description: Install redistributable runtime tools in Wine
License: OSI-Approved
Maintainer: Benjamin Reed winetri...@fink.raccoonfink.com

Depends: 
cabextract,
wine

BuildDepends: fink (= 0.29.7-1)

CustomMirror: 
Primary: http://www.finkproject.org/~ranger/distfiles
eur-NL: http://www.finkproject.org/~ranger/distfiles
nam-US: http://ranger.befunk.com/fink

NoSourceDirectory: true
Source: mirror:custom:%n/%n-%v
Source-MD5: f5823c765572a90df2b52b476915cd59
PatchScript: patch -p0 %n-%v %{PatchFile}
PatchFile: %n.patch
PatchFile-MD5: 8c56e7d0f9877e83940ee2eac3a16f52

UseMaxBuildJobs: true
CompileScript: true

InstallScript: 
install -d -m 755 %i/bin
install -c -m 755 %n-%v %i/bin/%n


Homepage: http://wiki.winehq.org/winetricks
DescDetail: 
Winetricks is a quick and dirty script to download and install
various redistributable runtime libraries sometimes needed to
run programs in Wine.

Note: Although using winetricks may be very useful for getting
some programs working in Wine, doing so may limit your ability
to get support though WineHQ.  In particular, reporting bugs
may not be possible.



--- NEW FILE: winetricks.patch ---
--- winetricks-20100921 2010-09-21 11:22:19.0 -0400
+++ winetricks-20100921.new 2010-09-21 11:23:01.0 -0400
@@ -546,12 +546,12 @@
 # [*] --read-timeout is useful on the adobe server that doesn't
 # close the connection unless you tell it to (control-C or closing
 # the socket)
-try wget -O $file -nd -c --read-timeout=300 --retry-connrefused 
--header Accept-Encoding: gzip,deflate $2
+try wget -O $file -nd -c --read-timeout=300 
--no-check-certificate --retry-connrefused --header Accept-Encoding: 
gzip,deflate $2
 elif [ -x `which curl 2/dev/null` ]
 then
 # curl doesn't get filename from the location given by the server!
 # fortunately, we know it
-try curl -L -o $file -C - --header Accept-Encoding: 
gzip,deflate $2
+try curl -L -o $file -C - --insecure --header Accept-Encoding: 
gzip,deflate $2
 else
 die wget/curl not found, cannot download any files. Please 
install either wget or curl.
 fi


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/crypto openh323-1.patch, NONE, 1.1 openh323-1.info, 1.2, 1.3

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv1346

Modified Files:
openh323-1.info 
Added Files:
openh323-1.patch 
Log Message:
remove old SDL dist restriction and add x86_64 fixes

--- NEW FILE: openh323-1.patch ---
--- a/src/channels.cxx  2006-03-21 05:42:25.0 -0500
+++ b/src/channels.cxx  2012-03-16 12:15:03.0 -0400
@@ -1361,7 +1361,7 @@
 
 filterMutex.Wait();
 for (PINDEX i = 0; i  filters.GetSize(); i++)
-  filters[i](frame, (INT)sendPacket);
+  filters[i](frame, (long INT)sendPacket);
 filterMutex.Signal();
 
 if (sendPacket || (silent  frame.GetPayloadSize()  0)) {

Index: openh323-1.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto/openh323-1.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- openh323-1.info 26 Jan 2012 22:17:23 -  1.2
+++ openh323-1.info 16 Mar 2012 17:21:41 -  1.3
@@ -1,7 +1,6 @@
 Package: openh323-1
 Version: 1.19.0
-Revision: 7
-Distribution: 10.4, 10.5
+Revision: 8
 Maintainer: None fink-de...@lists.sourceforge.net
 GCC: 4.0
 BuildDependsOnly: true
@@ -15,7 +14,7 @@
openssl098-dev,
pwlib1 (= 1.10.10-6),
sdl (= 1.2.13-1),
-   speex3,
+   libspeex1,
sed,
fink (= 0.27.2)
 
@@ -28,8 +27,11 @@
 Source: mirror:sourceforge:/openh323/openh323-v1_19_0_1-src-tar.gz
 SourceDirectory: openh323_v1_19_0_1
 
+PatchFile: %n.patch
+PatchFile-MD5: d6654cc320260af7180426a5c8cba16f
 PatchScript: 
 #!/bin/sh -ev
+  %{default_script}
   sed -ri.bak -e '/ awk/s,,- ,' src/Makefile
   sed -ri.bak -e 's,@SHAREDLIBEXT@,dylib,' Makefile.in
   sed -ri.bak -e '/^STDCCFLAGS/s,\(OH323_INCDIR\)$,(OPENH323DIR)/include,' 
openh323u.mak.in
@@ -69,7 +71,7 @@
   export CPATH=%p/include/ffmpeg:%p/include/speex:%p/include
   export STDCCFLAGS=-I%b/include 
  ./configure %c
-  if [ %m = i386 ] ; then abbr=x86 ; else abbr=ppc ; fi
+  if [ %m != powerpc ] ; then abbr=x86 ; else abbr=ppc ; fi
   mv=`sed -r -e 's,\.[^.]*$,,' %v`
   Mv=`sed -r -e 's,\.[^.]*$,,' $mv`
   make LDSOOPTS=-dynamiclib -single_module -Wl,-x -dead_strip 
-compatibility_version $mv -current_version %v -install_name 
%p/lib/libh323_Darwin_${abbr}_n.${Mv}.dylib \
@@ -78,7 +80,7 @@
 InstallScript: 
 #!/bin/sh -ev
 #  make install DESTDIR=%d
-  if [ %m = i386 ] ; then abbr=x86 ; else abbr=ppc ; fi
+  if [ %m != powerpc ] ; then abbr=x86 ; else abbr=ppc ; fi
   mkdir -p %i/lib %i/include/openh323 %i/share/openh323
   cp -pPR lib/lib* %i/lib
   ln -s libh323_Darwin_${abbr}_n.dylib %i/lib/libopenh323.dylib
@@ -110,7 +112,7 @@
openssl098-shlibs,
pwlib1-shlibs (= 1.10.10-6),
sdl-shlibs (= 1.2.13-1),
-   speex3-shlibs
+   libspeex1-shlibs
   
   Conflicts: openh323-shlibs
   Replaces: openh323-shlibs
@@ -119,7 +121,7 @@
   Files: lib/libh323_Darwin_*.*.dylib lib/pwlib
   Shlibs: 
( %m = powerpc  ) %p/lib/libh323_Darwin_ppc_n.1.dylib 1.19.0 %n (= 
1.19.0-1)
-   ( %m = i386 ) %p/lib/libh323_Darwin_x86_n.1.dylib 1.19.0 %n (= 
1.19.0-1)
+   ( %m != powerpc ) %p/lib/libh323_Darwin_x86_n.1.dylib 1.19.0 %n (= 
1.19.0-1)
   
   DocFiles: mpl-1.0.htm ReadMe.txt
 


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto openmcu.info,1.2,NONE

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv1710/unstable/main/finkinfo/crypto

Removed Files:
openmcu.info 
Log Message:
to stable
remove old SDL dist restriction
add x86_64 fixes

--- openmcu.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/crypto openmcu.info, NONE, 1.1 openmcu.patch, NONE, 1.1

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv1710/d/d/d/d

Added Files:
openmcu.info openmcu.patch 
Log Message:
to stable
remove old SDL dist restriction
add x86_64 fixes

--- NEW FILE: openmcu.patch ---
--- a/conference.h  2006-08-07 02:18:22.0 -0400
+++ b/conference.h  2012-03-16 13:30:33.0 -0400
@@ -396,7 +396,7 @@
 #ifdef P_64BIT
 { return psprintf(%lli, id); }
 #else
-{ return PString(PString::Unsigned, (unsigned)id); }
+{ return PString(PString::Unsigned, (unsigned long)id); }
 #endif
 #ifdef _WIN32
 #pragma warning(pop)
@@ -495,7 +495,7 @@
 #ifdef P_64BIT
 { return psprintf(%lli, id); }
 #else
-{ return PString(PString::Unsigned, (unsigned)id); }
+{ return PString(PString::Unsigned, (unsigned long)id); }
 #endif
 
 #ifdef _WIN32

--- NEW FILE: openmcu.info ---
Package: openmcu
Version: 2.2.1
Revision: 3
#Distribution: 10.4, 10.5
Maintainer: None fink-de...@lists.sourceforge.net
BuildDepends: fink (= 0.9.12), expat1, openh323-1, pwlib1, sdl
Depends: openh323-1-shlibs, pwlib1-shlibs
Source: mirror:sourceforge:/openh323/%n-v2_2_1-src.tar.gz
Source-MD5: 2808c6d4c95010851146001083357955
Source2: 
http://ftp.debian.org/debian/pool/main/o/openmcu/openmcu_2.2.1-1.diff.gz
Source2-MD5: 863b11fa83ea0a13be81a9ae39f7606d
SourceDirectory: %n_v2_2_1

PatchFile: %n.patch
PatchFile-MD5: 7fd794d55658a189df8b389069b04cff
PatchScript: 
 gunzip -c ../%n_%v-1.diff.gz | sed -e '1,/@DPATCH@/d' -e 
'\Xdebian/controlX,$d' -e 's,^[+],,' | patch -p1
 %{default_script}
 # hoping this way the executable can find the .wav files
 perl -pi -e 's,[a-z]*.wav,%p/share/%n/$,' main.cxx
 # for stripping _ cf LDFLAGS
 echo '__mh_execute_header'  symlst


NoSetLDFLAGS: true
SetLDFLAGS: -Wl,-x -exported_symbols_list symlst -dead_strip
NoSetCPPFLAGS: true
SetCFLAGS: -O3 -fstrict-aliasing -mdynamic-no-pic
CompileScript: 
 #!/bin/sh -ev
 export CPATH=%p/include/openh323:%p/include
 make OPENH323DIR=%p/share/openh323 OH323_LIBDIR=%p/lib NOTRACE=1 opt
 # re-link with just -lh323 -lpt on the link line, to avoid bloated load 
commands.
 if [ %m == powerpc ] ; then
c++ -o obj_Darwin_ppc_n/%n -Wl,-x -exported_symbols_list symlst 
-dead_strip -L%p/lib -lh323 -lpt obj_Darwin_ppc_n/*.o
 else 
c++ -o obj_Darwin_x86_n/%n -Wl,-x -exported_symbols_list symlst 
-dead_strip -L%p/lib -lh323 -lpt obj_Darwin_x86_n/*.o
 fi

InstallScript: 
#!/bin/sh -ev
 install -d %i/bin
 if [ %m == powerpc ] ; then
install -m 755 ./obj_Darwin_ppc_n/openmcu %i/bin
 else
install -m 755 ./obj_Darwin_x86_n/openmcu %i/bin
 fi
 install -d %i/share/man/man1
 install -m 644 openmcu.1 %i/share/man/man1
 install -d %i/share/%n
 install -m 644 *.wav %i/share/%n

DocFiles: ChangeLog ReadMe.txt mpl-1.0.htm
Description: H.323 conferencing server based on OpenH323
DescDetail: 
openmcu is a simple Multi Conference Unit using the H.323 protocol.
It sets up a H.323 listener process, and then waits for incoming
connections. Whenever an incoming connection is established, it adds
that call to the specified conference or to the default one if none
is specified.

DescPort: 
quick update _ functionality not tested.
There are still a couple of files [e.g., messages.mc, openmcu.{gif,ico},
server.pem (for %p/etc/ssl ??)] I don't know what to do about ...

openh323-1 and openmcu should be updated to the latest versions
on  http://www.h323plus.org/ and/or  http://www.opalvoip.org/
(as long as ekiga can still use pwlib, as well as openh323's
plugins).

Homepage: http://openh323.sourceforge.net/
License: OSI-Approved


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods data-messagepack-pm.info, NONE, 1.1

2012-03-16 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv18193

Added Files:
data-messagepack-pm.info 
Log Message:
New package.


--- NEW FILE: data-messagepack-pm.info ---
Info2: 
Package: data-messagepack-pm%type_pkg[perl]
Version: 0.39
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
License: Artistic/GPL
Description: MessagePack serialising/deserialising
Maintainer: Daniel Johnson dan...@daniel-johnson.org
Homepage: http://search.cpan.org/dist/Data-MessagePack/

Source: mirror:cpan:authors/id/G/GF/GFUJI/Data-MessagePack-%v.tar.gz
Source-MD5: 363dd7a54f43e04ef8cccd6927841c6e

Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
UpdatePOD: true

Depends: 
perl%type_pkg[perl]-core


InfoTest: TestDepends: test-simple-pm%type_pkg[perl] (= 0.96-1), 
test-requires-pm, test-leaktrace-pm%type_pkg[perl]

DocFiles: Changes README

InstallScript: 
%{default_script}
/bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]




--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods data-messagepack-pm.info, NONE, 1.1

2012-03-16 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv18220

Added Files:
data-messagepack-pm.info 
Log Message:
New package.


--- NEW FILE: data-messagepack-pm.info ---
Info2: 
Package: data-messagepack-pm%type_pkg[perl]
Version: 0.39
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
License: Artistic/GPL
Description: MessagePack serialising/deserialising
Maintainer: Daniel Johnson dan...@daniel-johnson.org
Homepage: http://search.cpan.org/dist/Data-MessagePack/

Source: mirror:cpan:authors/id/G/GF/GFUJI/Data-MessagePack-%v.tar.gz
Source-MD5: 363dd7a54f43e04ef8cccd6927841c6e

Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
UpdatePOD: true

Depends: 
perl%type_pkg[perl]-core


InfoTest: TestDepends: test-simple-pm%type_pkg[perl] (= 0.96-1), 
test-requires-pm, test-leaktrace-pm%type_pkg[perl]

DocFiles: Changes README

InstallScript: 
%{default_script}
/bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]




--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods iniparse-py.info, NONE, 1.1

2012-03-16 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv18268

Added Files:
iniparse-py.info 
Log Message:
sync. w/ 10.!4/stable, -py27 validated on powerpc-darwin8


--- NEW FILE: iniparse-py.info ---
Info2: 
Package: iniparse-py%type_pkg[python]
Version: 0.4
Revision: 2
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: http://iniparse.googlecode.com/files/iniparse-%v.tar.gz
Source-MD5: 5e573e9e9733d97623881ce9bbe5eca6
Depends: python%type_pkg[python], distribute-py%type_pkg[python]

CompileScript: python%type_raw[python] setup.py build
InstallScript: 
python%type_raw[python] setup.py install --prefix %p --root %d
mv %i/share/doc/iniparse-%v %i/share/doc/%n

DocFiles: LICENSE LICENSE-PSF README html/

Description: INI parser for Python
DescDetail: 
Backward compatible implementations of ConfigParser, RawConfigParser,
and SafeConfigParser are included that are API-compatible with the
Python standard library. They pass all the unit tests included with
Python.

Order of sections  options, indentation, comments, and blank lines
are preserved as far as possible when data is updated.

Values can be accessed using dotted notation (cfg.user.name), or using
container syntax (cfg['user']['name']).

It is very useful for config files that are updated both by users and
by programs, since it is very disorienting for a user to have her
config file completely rearranged whenever a program changes
it. iniparse also allows making the order of entries in a config file
significant, which is desirable in applications like image galleries.

License: BSD
Homepage: http://code.google.com/p/iniparse/
Maintainer: Brendan Cully bren...@finkproject.org



--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods iniparse-py.info, 1.1, NONE

2012-03-16 Thread David Fang
Update of 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv18270

Removed Files:
iniparse-py.info 
Log Message:
relocated to stable


--- iniparse-py.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci qfits.info,1.5,1.6

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv19472

Modified Files:
qfits.info 
Log Message:
doesn't build on x86_64

Index: qfits.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/qfits.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- qfits.info  12 Aug 2010 00:10:43 -  1.5
+++ qfits.info  16 Mar 2012 20:39:48 -  1.6
@@ -1,6 +1,7 @@
 Package: qfits
 Version: 6.2.0
 Revision: 5
+Architecture: i386, powerpc
 Source: http://archive.ubuntu.com/ubuntu/pool/universe/q/%n/%n_%v.orig.tar.gz
 ## using ubuntu because the original download url seems to be dead
 Source2: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -42,4 +43,4 @@
 share/doc
   
 DocFiles: COPYING
-
\ No newline at end of file
+


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci meme.info,1.2,NONE

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv19567/unstable/main/finkinfo/sci

Removed Files:
meme.info 
Log Message:
to stable with version bump to fix build problem
with install fixes for new version

--- meme.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci meme.info,NONE,1.1

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv19567/d/d/d/d

Added Files:
meme.info 
Log Message:
to stable with version bump to fix build problem
with install fixes for new version

--- NEW FILE: meme.info ---
Package: meme
Version: 4.8.1
Revision: 1
Depends: 
gcc46-shlibs,
libiconv (= 1.12-3),
libxml2-shlibs (= 2.6.32-1),
libxslt-shlibs (= 1.1.24-1),
openmpi-shlibs

BuildDepends: 
libiconv-dev (= 1.12-3),
libxml2 (= 2.6.32-1),
libxslt (= 1.1.24-1),
openmpi,
openmpi-dev

Source: http://meme.nbcr.net/downloads/%n_%v.tar.gz
Source-MD5: e2e40fc86eb67b1346ac7c35240efd8f
PatchScript: 
perl -pi -e 's|\$\(other_exdir\)|\$\(DESTDIR\)$|g' 
doc/examples/Makefile.in
perl -pi -e 's|\$\(MEME_LOGS\)|\$\(DESTDIR\)$|g' Makefile.in
perl -pi -e 's|\$\(MEME_DB\)|\$\(DESTDIR\)$|g' Makefile.in

ConfigureParams: --prefix=%p/lib/meme --mandir=%p/share/man 
--enable-dependency-tracking --with-mpicc=%p/bin/mpicc 
--with-perl=/usr/bin/perl --with-python=/usr/bin/python 
CompileScript: 
#!/bin/sh -ev
./configure %c
make -w

InstallScript: make install DESTDIR=%d
DocFiles: AUTHORS COPYING ChangeLog NEWS README
License: OSI-Approved
Homepage: http://meme.nbcr.net
Maintainer: Jack Fink jackf...@users.sourceforge.net
Description: Motif-based sequence analysis tools



--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci qfits.info, 1.6, NONE qgfe.info, 1.1, NONE

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv19673/unstable/main/finkinfo/sci

Removed Files:
qfits.info qgfe.info 
Log Message:
to stable

--- qfits.info DELETED ---

--- qgfe.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci qfits.info, NONE, 1.1 qgfe.info, NONE, 1.1

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv19673/d/d/d/d

Added Files:
qfits.info qgfe.info 
Log Message:
to stable

--- NEW FILE: qfits.info ---
Package: qfits
Version: 6.2.0
Revision: 5
Architecture: i386, powerpc
Source: http://archive.ubuntu.com/ubuntu/pool/universe/q/%n/%n_%v.orig.tar.gz
## using ubuntu because the original download url seems to be dead
Source2: http://www.gnu.org/licenses/gpl-2.0.txt
Source2-MD5: b234ee4d69f5fce4486a80fdaf4a4263
Source2Rename: COPYING
Depends: libqfits0-shlibs
Source-MD5: f3920831eee308af04d75089291ce144
SourceDirectory: %n-%v
ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking
SetCFLAGS: -Os
PatchScript: mv ../COPYING .
InstallScript: make install DESTDIR=%d  mkdir -p %i/share/doc/%n  cp -r 
htm? %i/share/doc/%n/
DocFiles: AUTHORS COPYING README
Homepage: http://www.eso.org/projects/aot/qfits
Maintainer: Jack Fink jackf...@users.sourceforge.net
License: GPL
Description: FITS manipulation tools
Splitoff: 
  Package: libqfits0-shlibs
  Description: Library offering easy access to FITS files, shared libraries
  Files: 
lib/libqfits.0.dylib
lib/libqfits.0.0.0.dylib
  
  Shlibs: 
%p/lib/libqfits.0.dylib 1.0.0 %n (= 6.2.0-1002)
  
DocFiles: COPYING

Splitoff2: 
  Package: libqfits0
  Description: Library offering easy access to FITS files
  Depends: libqfits0-shlibs (= %v-%r)
  BuildDependsOnly: true
  Files: 
include
lib/*.*a
lib/libqfits.dylib
share/doc
  
DocFiles: COPYING


--- NEW FILE: qgfe.info ---
Package: qgfe
Version: 1.0
Revision: 1002
Source: http://www.xm1math.net/%n/%n-%v.tar.bz2
Depends: qt3-shlibs, x11, x11-shlibs
BuildDepends: x11-dev, qt3
Suggests: gnuplot
Maintainer: Jack Fink jackf...@users.sourceforge.net
Homepage: http://www.xm1math.net/qgfe
License: GPL
Description: Graphical frontend for gnuplot, uses Qt3
GCC: 4.0
Source-MD5: 71ed002f2362ab2e774e8999a337ebf5
CompileScript: 
%p/lib/qt3/bin/qmake PREFIX=%p
make

InstallScript: 
mkdir -p %i/bin %i/share/qgfe
cp -p qgfe %i/bin/
cp -p utilities/qgfe*.png %i/share/qgfe/

DocFiles: utilities/COPYING utilities/AUTHORS


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/games sdl-gfx13.info,1.1,1.2

2012-03-16 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv20315

Modified Files:
sdl-gfx13.info 
Log Message:
New upstream sdl-gfx13 2.0.23.


Index: sdl-gfx13.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/games/sdl-gfx13.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sdl-gfx13.info  24 Jul 2011 22:46:28 -  1.1
+++ sdl-gfx13.info  16 Mar 2012 21:01:27 -  1.2
@@ -1,5 +1,5 @@
 Package: sdl-gfx13
-Version: 2.0.20
+Version: 2.0.23
 Revision: 1
 Description: SDL basic drawing routines and rotozoomer
 DescDetail: 
@@ -10,7 +10,7 @@
 DescPackaging: 
Formerly maintained by Michael Wybrow
 
-License: LGPL
+License: BSD
 Maintainer: None fink-de...@lists.sourceforge.net
 Homepage: 
http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx
 #
@@ -19,13 +19,11 @@
 BuildDependsOnly: true
 #
 Source: http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-%v.tar.gz
-Source-MD5: 8a787e538a8e4d80d4927535be5af083
+Source-MD5: fcc3c4f2d1b4943409bf7e67dd65d03a
 #
-#UpdateLibtool: true
-ConfigureParams: --disable-mmx --disable-sdltest --disable-dependency-tracking
+ConfigureParams: --disable-mmx --disable-sdltest --disable-static 
--disable-dependency-tracking
 #
 NoSetCPPFLAGS: true
-SetLDFLAGS: -no-undefined
 InstallScript: 
   make install DESTDIR=%d
   mkdir -p %i/share/doc/%n
@@ -35,8 +33,8 @@
 SplitOff: 
   Package: %N-shlibs
   Depends: sdl-shlibs (= 1.2.9-1001)
-  Files: lib/libSDL_gfx.13.5.2.dylib lib/libSDL_gfx.13.dylib
-  Shlibs: %p/lib/libSDL_gfx.13.dylib 19.0.0 %n (= 2.0.20-1)
+  Files: lib/libSDL_gfx.13.dylib
+  Shlibs: %p/lib/libSDL_gfx.13.dylib 23.0.0 %n (= 2.0.23-1)
   Docfiles: AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README
 
 #


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/games sdl-gfx13.info,1.3,1.4

2012-03-16 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv20365

Modified Files:
sdl-gfx13.info 
Log Message:
New upstream sdl-gfx13 2.0.23.


Index: sdl-gfx13.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/games/sdl-gfx13.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- sdl-gfx13.info  18 Jan 2010 18:41:16 -  1.3
+++ sdl-gfx13.info  16 Mar 2012 21:01:33 -  1.4
@@ -1,5 +1,5 @@
 Package: sdl-gfx13
-Version: 2.0.20
+Version: 2.0.23
 Revision: 1
 Description: SDL basic drawing routines and rotozoomer
 DescDetail: 
@@ -10,7 +10,7 @@
 DescPackaging: 
Formerly maintained by Michael Wybrow
 
-License: LGPL
+License: BSD
 Maintainer: None fink-de...@lists.sourceforge.net
 Homepage: 
http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx
 #
@@ -19,13 +19,11 @@
 BuildDependsOnly: true
 #
 Source: http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-%v.tar.gz
-Source-MD5: 8a787e538a8e4d80d4927535be5af083
+Source-MD5: fcc3c4f2d1b4943409bf7e67dd65d03a
 #
-#UpdateLibtool: true
-ConfigureParams: --disable-mmx --disable-sdltest --disable-dependency-tracking
+ConfigureParams: --disable-mmx --disable-sdltest --disable-static 
--disable-dependency-tracking
 #
 NoSetCPPFLAGS: true
-SetLDFLAGS: -no-undefined
 InstallScript: 
   make install DESTDIR=%d
   mkdir -p %i/share/doc/%n
@@ -35,8 +33,8 @@
 SplitOff: 
   Package: %N-shlibs
   Depends: sdl-shlibs (= 1.2.9-1001)
-  Files: lib/libSDL_gfx.13.5.2.dylib lib/libSDL_gfx.13.dylib
-  Shlibs: %p/lib/libSDL_gfx.13.dylib 19.0.0 %n (= 2.0.20-1)
+  Files: lib/libSDL_gfx.13.dylib
+  Shlibs: %p/lib/libSDL_gfx.13.dylib 23.0.0 %n (= 2.0.23-1)
   Docfiles: AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README
 
 #


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods instant-py.info, NONE, 1.1

2012-03-16 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22331

Added Files:
instant-py.info 
Log Message:
sync. w/ 10.!4/stable, -py27 validated on powerpc-darwin8


--- NEW FILE: instant-py.info ---
Info2: 
Package: instant-py%type_pkg[python]
Version: 1.0.0
Revision: 2
Type: python (2.5 2.6 2.7)
Description: Python module for inlining C/C++
DescDetail: 
Instant is a Python module that allows for instant inlining of
C and C++ code in Python. It is a small Python module built on
top of SWIG and Distutils.

Maintainer: Daniel Johnson dan...@daniel-johnson.org
License: BSD
Homepage: http://fenicsproject.org/

Source: http://launchpad.net/instant/1.0.x/%v/+download/instant-%v.tar.gz
Source-MD5: b73ffae5f590eeaaf4682e32a44b36cc

PatchScript: perl -pi -e 's,python ,%p/bin/python%type_raw[python] ,' 
instant/build.py

Depends: python%type_pkg[python], swig, numpy-py%type_pkg[python]

CompileScript: 
%p/bin/python%type_raw[python] setup.py build 


InfoTest: 
TestScript: 
#!/bin/bash -ev
cd test

# Tests expect a 'python' executable, so make one that's 
predictable.
ln -s %p/bin/python%type_raw[python] python
export PATH=.:$PATH

PYTHONPATH=%b/build/lib %p/bin/python%type_raw[python] 
run_tests.py || exit 2
rm %b/build/lib/instant/*.pyc



InstallScript: 
%p/bin/python%type_raw[python] setup.py install --root %d
/bin/mv %i/bin/instant-clean %i/bin/instant-clean-py%type_pkg[python]
/bin/mv %i/share/man/man1/instant-clean.1.gz 
%i/share/man/man1/instant-clean-py%type_pkg[python].1.gz
/bin/mv %i/bin/instant-showcache 
%i/bin/instant-showcache-py%type_pkg[python]
/bin/mv %i/share/man/man1/instant-showcache.1.gz 
%i/share/man/man1/instant-showcache-py%type_pkg[python].1.gz


PostInstScript: 
update-alternatives --install %p/bin/instant-clean instant-clean 
%p/bin/instant-clean-py%type_pkg[python] %type_pkg[python] --slave 
%p/share/man/man1/instant-clean.1.gz instant-clean.1.gz 
%p/share/man/man1/instant-clean-py%type_pkg[python].1.gz
update-alternatives --install %p/bin/instant-showcache 
instant-showcache %p/bin/instant-showcache-py%type_pkg[python] 
%type_pkg[python] --slave %p/share/man/man1/instant-showcache.1.gz 
instant-showcache.1.gz 
%p/share/man/man1/instant-showcache-py%type_pkg[python].1.gz

PreRmScript: 
if [ $1 != upgrade ]; then
update-alternatives --remove instant-clean 
%p/bin/instant-clean-py%type_pkg[python]
update-alternatives --remove instant-showcache 
%p/bin/instant-showcache-py%type_pkg[python]
fi




--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods instant-py.info, 1.1, NONE

2012-03-16 Thread David Fang
Update of 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22334

Removed Files:
instant-py.info 
Log Message:
relocated to stable


--- instant-py.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods jinja-py.info, NONE, 1.1 jinja-py.patch, NONE, 1.1

2012-03-16 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv23691

Added Files:
jinja-py.info jinja-py.patch 
Log Message:
sync. w/ 10.!4/stable, -py27 validated on powerpc-darwin8


--- NEW FILE: jinja-py.patch ---
--- Jinja-1.2/setup.py.bak2008-05-30 10:56:29.0 -0400
+++ Jinja-1.2/setup.py2008-05-30 10:57:12.0 -0400
@@ -78,10 +78,10 @@
 ],
 keywords=['python.templating.engines'],
 packages=['jinja', 'jinja.translators'],
-data_files=[
-('docs/html', list(list_files('docs/html'))),
-('docs/txt', list(list_files('docs/src')))
-],
+#data_files=[
+#('docs/html', list(list_files('docs/html'))),
+#('docs/txt', list(list_files('docs/src')))
+#],
 entry_points='''
 [python.templating.engines]
 jinja = jinja.plugin:BuffetPlugin

--- NEW FILE: jinja-py.info ---
Info2: 

Package: jinja-py%type_pkg[python]
Version: 1.2
Revision: 2
Maintainer: Kurt Schwehr goat...@users.sourceforge.net
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
BuildDepends: docutils-py%type_pkg[python], fink (= 0.24.12-1), 
distribute-py%type_pkg[python]
Depends: python%type_pkg[python] 
Source: http://cheeseshop.python.org/packages/source/J/Jinja/Jinja-%v.tar.gz
Source-MD5: 1235a005ade00b213800ff1e798c0241
CompileScript: 
 chmod u+w *
 %p/bin/python%type_raw[python] setup.py build

InstallScript: 
 %p/bin/python%type_raw[python] setup.py install --root %d

License: BSD
PatchFile: jinja-py.patch
PatchFile-MD5: df0f7492475b6df9eafa24a2799b7702
HomePage: http://sphinx.pocoo.org
DocFiles: AUTHORS CHANGES LICENSE TODO docs/html
Description: Python template engine
DescDetail: 
Jinja is a library for Python 2.4 and onwards that is designed to be
flexible, fast and secure. If you have any exposure to other
text-based template languages, such as Smarty or Django, you should
feel right at home with Jinja. It's both designer and developer
friendly by sticking to Python's principles and adding functionality
useful for templating environments.




--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods jinja-py.info, 1.1, NONE jinja-py.patch, 1.1, NONE

2012-03-16 Thread David Fang
Update of 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv23693

Removed Files:
jinja-py.info jinja-py.patch 
Log Message:
relocated to stable


--- jinja-py.patch DELETED ---

--- jinja-py.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods macholib-py.info, NONE, 1.1

2012-03-16 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv24295

Added Files:
macholib-py.info 
Log Message:
sync. w/ 10.!4/stable, -py27 validated on powerpc-darwin8


--- NEW FILE: macholib-py.info ---
Info2: 
Package: macholib-py%type_pkg[python]
Version: 1.4.3
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: 
http://cheeseshop.python.org/packages/source/m/macholib/macholib-%v.tar.gz
Source-MD5: 308d478df389d525ce1a9113883a4f1c
Depends: 
  python%type_pkg[python], distribute-py%type_pkg[python],
  altgraph-py%type_pkg[python]

CompileScript: python%type_raw[python] setup.py build
InstallScript: 
python%type_raw[python] setup.py install --prefix %p --root %d
mv %i/bin/macho_dump %i/bin/macho_dump-py%type_pkg[python]
mv %i/bin/macho_find %i/bin/macho_find-py%type_pkg[python]
mv %i/bin/macho_standalone %i/bin/macho_standalone-py%type_pkg[python]

PostInstScript: 
  update-alternatives --install %p/bin/macho_dump macho_dump 
%p/bin/macho_dump-py%type_pkg[python] %type_pkg[python]
  update-alternatives --install %p/bin/macho_find macho_find 
%p/bin/macho_find-py%type_pkg[python] %type_pkg[python]
  update-alternatives --install %p/bin/macho_standalone macho_standalone 
%p/bin/macho_standalone-py%type_pkg[python] %type_pkg[python]

PreRmScript: 
  if [ $1 != upgrade ]
  then
update-alternatives --remove macho_dump 
%p/bin/macho_dump-py%type_pkg[python]
update-alternatives --remove macho_find 
%p/bin/macho_find-py%type_pkg[python]
update-alternatives --remove macho_standalone 
%p/bin/macho_standalone-py%type_pkg[python]
  fi

Description: Mach-O header analysis and editing
DescDetail: 
macholib can be used to analyze and edit Mach-O headers, the
executable format used by Mac OS X.

It's typically used as a dependency analysis tool, and also to rewrite
dylib references in Mach-O headers to be @executable_path relative.

Though this tool targets a platform specific file format, it is pure
python code that is platform and endian independent.

License: BSD
Homepage: http://undefined.org/python/#macholib
Maintainer: Brendan Cully bren...@finkproject.org



--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods macholib-py.info, 1.1, NONE

2012-03-16 Thread David Fang
Update of 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv24304

Removed Files:
macholib-py.info 
Log Message:
relocated to stable


--- macholib-py.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods mdp-py.info, NONE, 1.1

2012-03-16 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv3777

Added Files:
mdp-py.info 
Log Message:
sync. w/ 10.!4/stable, -py27 validated on powerpc-darwin8


--- NEW FILE: mdp-py.info ---
Info2: 
Package: mdp-py%type_pkg[python]
Version: 3.0
Revision: 1
Type: python (2.5 2.6 2.7 3.1 3.2)
Depends: python%type_pkg[python]
Source: mirror:sourceforge:project/mdp-toolkit/mdp-toolkit/%v/MDP-%v.tar.gz
Source-MD5: 98ea6ee97223caf4b408ff8842cfcf2e
CompileScript: %p/bin//python%type_raw[python] setup.py build
InstallScript: %p/bin//python%type_raw[python] setup.py install --root=%d
DocFiles: COPYRIGHT TODO README CHANGES PKG-INFO
Description: Modular toolkit for Data Processing MDP
License: BSD
Maintainer: Julius Canute juliuscan...@gmail.com
HomePage: http://mdp-toolkit.sourceforge.net/
DescDetail: 
Modular toolkit for Data Processing is a library of widely
used data processing algorithms that can be combined according
to a pipeline analogy to build more complex data processing software. 
Implemented algorithms include PCA,ICA,SFA, and many more.



--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods mdp-py.info, 1.1, NONE

2012-03-16 Thread David Fang
Update of 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv3781

Removed Files:
mdp-py.info 
Log Message:
relocated to stable


--- mdp-py.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/devel openocd.info,1.1,1.2

2012-03-16 Thread Matthias Ringwald
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv5641

Modified Files:
openocd.info 
Log Message:
update to 0.5.0 using 10.4 file

Index: openocd.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/openocd.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- openocd.info7 Aug 2011 14:28:27 -   1.1
+++ openocd.info16 Mar 2012 23:22:24 -  1.2
@@ -1,20 +1,18 @@
 Info2: 
 Package: openocd
-Version: 0.4.0
-Revision: 2
+Version: 0.5.0
+Revision: 1
 
 Source: mirror:sourceforge:openocd/%v/openocd-%v.tar.gz
-Source-MD5: eb91e1152e8c374fc906d1a276c21b4f
+Source-MD5: 42999a8950b669780f27ec7484c86458
 
-BuildDepends: libftdi,libusb
+BuildDepends: libftdi,libusb,fink (= 0.28) 
 Depends: libftdi-shlibs
 
 PatchScript: 
 perl -i -pe 's/INFO_DEPS =.*/INFO_DEPS =/' doc/Makefile.in
 
 
-SetCC: llvm-gcc
-
 ConfigureParams: 
   --disable-maintainer-mode \
   --disable-dependency-tracking \
@@ -28,7 +26,8 @@
   --enable-jlink\
   --enable-vsllink  \
   --enable-rlink\
-  --enable-arm-jtag-ew
+  --enable-arm-jtag-ew  \
+  --disable-werror
 
 
 DocFiles: AUTHORS ChangeLog COPYING NEWS README TODO


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs simage27.info,1.7,NONE

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv24317/unstable/main/finkinfo/libs

Removed Files:
simage27.info 
Log Message:
to stable with 10.5/i386 test

--- simage27.info DELETED ---


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs simage27.info,NONE,1.1

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv24317/d/d/d/d

Added Files:
simage27.info 
Log Message:
to stable with 10.5/i386 test

--- NEW FILE: simage27.info ---
Package: simage27
Version: 1.6.1
Revision: 1003
Architecture: i386, powerpc
GCC: 4.0
BuildDependsOnly: true
BuildDepends: libogg, libsndfile1-dev, libvorbis0, mjpegtools2-dev (= 
1.6.2-1003), libflac8-dev
Depends: %N-shlibs (= %v-%r)
Source: ftp://ftp.sim.no/pub/coin/src/simage-%v.tar.gz
Source-MD5: d4c836ab282388392a65cd0650f224c5
ConfigureParams: --mandir=%i/share/man --enable-static --with-xwd --with-targa 
--with-rgb --with-pic --with-eps --enable-quicktime --with-x --with-zlib 
--with-mpeg2enc
CompileScript: 
 ./configure %c
 sed -i -e 's/^whole_archive_flag_spec=.*/whole_archive_flag_spec=/' libtool
 make

SplitOff: 
  Package: %N-shlibs
  Depends: libogg-shlibs, libsndfile1-shlibs, libvorbis0-shlibs, 
mjpegtools2-shlibs (= 1.6.2-1003), libflac8
  Files: lib/libsimage.20.6.1.dylib lib/libsimage.20.dylib
  DocFiles: AUTHORS COPYING NEWS README
  Description: Shared libraries for simage package for Coin
  Shlibs: %p/lib/libsimage.20.dylib 27.0.0 %n (= 1.6.1-1)

DocFiles: AUTHORS COPYING NEWS README
Description: SIM lib for images in Coin3D OpenInventor
DescDetail: 
Library to allow Coin3D version of OpenInventor to load textures up.
Supports these formats: jpeg, gif, xwd, png, tiff, targa, rgb, pic,
eps, and mpeg.  It also supports sound using the ogg/vorbis format.

Note that this library is found at runtime via the DYLD_LIBRARY_PATH
variable, so coin's writoToFile from the offscreen render will fail
silently in pre 3.0.0 Coin.

DescPort: 
Ignore the check for g77.  It's not used.
Leaving in the check for guile... if found, it gets listed as ignored.
Do NOT need these configure flags since they are picked up by using
the quicktime framework:
--with-jpeg
--with-gif 
--with-png
--with-tiff 

License: GPL
Homepage: http://www.coin3d.org/
Maintainer: Kurt Schwehr goat...@users.sourceforge.net



--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs jdom.info,1.1,1.2

2012-03-16 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv25877

Modified Files:
jdom.info 
Log Message:
bump to java1.5 to build the same across dists
otherwise fail on 10.5 with
java.lang.UnsupportedClassVersionError: 
org/apache/xerces/jaxp/SAXParserFactoryImpl (Unsupported major.minor version 
49.0)
if saxon not installed

Index: jdom.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/jdom.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- jdom.info   14 Feb 2012 01:56:22 -  1.1
+++ jdom.info   17 Mar 2012 02:45:26 -  1.2
@@ -1,20 +1,20 @@
 Package: jdom
 Version: 1.1.1
-Revision: 1
+Revision: 2
 Epoch: 1
 Description: Alternative DOM processing API for java
-Type: java(1.4)
+Type: java(1.5)
 License: BSD
 Maintainer: Benjamin Reed j...@fink.raccoonfink.com
 
 Depends: 
xerces-j,
xalan-j,
-   system-java (= 1.4-1)
+   system-java (= 1.5-1)
 
 BuildDepends: 
ant-base,
-   system-java-dev (= 1.4-1)
+   system-java-dev (= 1.5-1)
 
 
 Source: http://jdom.org/dist/source/%n-%v.tar.gz


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs