Update of /cvsroot/fink/packages/dists/unstable/main/finkinfo/sound
In directory usw-pr-cvs1:/tmp/cvs-serv22727

Added Files:
        vorbis-tools-1.0rc3-1.info vorbis-tools-1.0rc3-1.patch 
Log Message:
New package from submission tracker


--- NEW FILE: vorbis-tools-1.0rc3-1.info ---
Package: vorbis-tools
Version: 1.0rc3
Revision: 1
Source: http://www.xiph.org/ogg/vorbis/download/vorbis-tools-%v.tar.gz
SourceDirectory: %n-%v
Source-MD5: c28c6b28cddb1d7027afd9a47a0d7b9c
Patch: %f.patch
Depends: libvorbis-shlibs, libogg-shlibs, libao2-shlibs, curl-shlibs | 
curl-ssl-shlibs, dlcompat, pth-shlibs
BuildDepends: libvorbis, libogg, libao2, curl | curl-ssl, curl-dev | curl-ssl-dev, pth
SetCPPFLAGS: -no-cpp-precomp
SetLDFLAGS: -lpth
ConfigureParams: --mandir=%p/share/man --with-ogg=%p --with-vorbis=%p --with-ao=%p 
--with-curl=%p
InstallScript: <<
make DESTDIR=%d install
mv %d%p/man %d%p/share
<<
DocFiles: README AUTHORS COPYING
Description: The Ogg Vorbis CODEC tools
DescDetail:  Ogg Vorbis is a fully Open, non-proprietary, patent-and-royalty-free, 
 general-purpose compressed audio format for mid to high quality 
 (8kHz-48.0kHz, 16+ bit, polyphonic) audio and music at fixed and 
 variable bitrates from 16 to 128 kbps/channel. This places Vorbis 
 in the same competetive class as audio representations such as 
 MPEG-4 (AAC), and similar to, but higher performance than MPEG-1/2 
 audio layer 3, MPEG-4 audio (TwinVQ), WMA and PAC.
 .
 Vorbis is the first of a planned family of Ogg multimedia coding 
 formats being developed as part of Xiph.org's Ogg multimedia project. 
License: GPL
Maintainer: Thomas Kotzian <[EMAIL PROTECTED]>
Homepage: http://www.xiph.org/ogg/vorbis/
                                  

--- NEW FILE: vorbis-tools-1.0rc3-1.patch ---
diff -urN vorbis-tools-1.0rc3.orig/ogg123/buffer.c vorbis-tools-1.0rc3/ogg123/buffer.c
--- vorbis-tools-1.0rc3.orig/ogg123/buffer.c    Thu Dec 20 01:24:53 2001
+++ vorbis-tools-1.0rc3/ogg123/buffer.c Wed Jul 10 23:06:10 2002
@@ -75,7 +75,7 @@
   sigaddset(&set, SIGINT);
   sigaddset(&set, SIGTSTP);
   sigaddset(&set, SIGCONT);
-  if (pthread_sigmask(SIG_BLOCK, &set, NULL) != 0)
+  if (pth_sigmask(SIG_BLOCK, &set, NULL) != 0)
     DEBUG("pthread_sigmask failed");
 }
 
diff -urN vorbis-tools-1.0rc3.orig/ogg123/http_transport.c 
vorbis-tools-1.0rc3/ogg123/http_transport.c
--- vorbis-tools-1.0rc3.orig/ogg123/http_transport.c    Thu Dec 20 01:24:54 2001
+++ vorbis-tools-1.0rc3/ogg123/http_transport.c Wed Jul 10 23:06:25 2002
@@ -139,7 +139,7 @@
   sigaddset (&set, SIGINT);
   sigaddset (&set, SIGTSTP);
   sigaddset (&set, SIGCONT);
-  if (pthread_sigmask (SIG_BLOCK, &set, NULL) != 0)
+  if (pth_sigmask (SIG_BLOCK, &set, NULL) != 0)
     status_error("Error: Could not set signal mask.");
 
   ret = curl_easy_perform((CURL *) myarg->curl_handle);
diff -urN vorbis-tools-1.0rc3.orig/share/getopt.c vorbis-tools-1.0rc3/share/getopt.c
--- vorbis-tools-1.0rc3.orig/share/getopt.c     Sun Sep 23 00:49:51 2001
+++ vorbis-tools-1.0rc3/share/getopt.c  Wed Jul 10 22:40:01 2002
@@ -108,9 +108,9 @@
    the argument value is returned here.
    Also, when `ordering' is RETURN_IN_ORDER,
    each non-option ARGV-element is returned here.  */
-
+/*
 char *optarg;
-
+*/
 /* Index in ARGV of the next element to be scanned.
    This is used for communication to and from the caller
    and for communication between successive calls to `getopt'.
@@ -124,8 +124,9 @@
    how much of ARGV has been scanned so far.  */
 
 /* 1003.2 says this must be 1 before any call.  */
+/*
 int optind = 1;
-
+*/
 /* Formerly, initialization of getopt depended on optind==0, which
    causes problems with re-calling getopt as programs generally don't
    know that. */
@@ -143,15 +144,15 @@
 
 /* Callers store zero here to inhibit the error message
    for unrecognized options.  */
-
+/*
 int opterr = 1;
-
+*/
 /* Set to an option character which was unrecognized.
    This must be initialized on some systems to avoid linking in the
    system's own getopt implementation.  */
-
+/*
 int optopt = '?';
-
+*/
 /* Describe how to deal with options that follow non-option ARGV-elements.
 
    If the caller did not specify anything,
@@ -960,6 +961,7 @@
   }
 }
 
+/*
 int
 getopt (argc, argv, optstring)
      int argc;
@@ -971,6 +973,7 @@
                           (int *) 0,
                           0);
 }
+*/
 
 #endif /* Not ELIDE_CODE.  */
 



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to