Commit graph

6017 commits

Author SHA1 Message Date
Jean-Yves Lefort
2ae4b07d9e Remove powerpc support, because there is no linuxulator on that arch
yet (point raised up by netchild and confirmed by arved).
2005-12-02 13:07:13 +00:00
Michael Johnson
af27f7752e - Update to 0.1.1 2005-12-02 07:04:09 +00:00
Adam Weinberger
dfad6206d8 Update to 1.99.10. 2005-12-02 03:55:07 +00:00
Edwin Groothuis
db520879e2 re-roll of tarball
Only in cpige-1.3-new/: LICENCE
Only in cpige-1.3-new/: Makefile.windows
diff -ru cpige/cpige.c cpige-1.3-new/cpige.c
--- cpige/cpige.c	Fri Nov 25 10:08:13 2005
+++ cpige-1.3-new/cpige.c	Wed Nov 30 07:06:12 2005
@@ -21,7 +21,10 @@
 #include <fcntl.h>
 #include <dirent.h>
 #include <sys/stat.h>
-#include <regex.h>
+
+#ifndef WIN32
+ #include <regex.h>
+#endif

 #include "cpige.h"
 #include "tool.h"
@@ -115,12 +118,12 @@

   /* Global dynamic configuration */
   cmdLine = parseCommandLine(argc, argv);
-  (void) testCommandLine();
+  testCommandLine();

   /* Logfile */
   if ((logfile = fopen(cmdLine->logFile, "a+")) == NULL)
   {
-    ERROR("Unable to openlogfile: %s Setting log to stdout\n", cmdLine->logFile);
+    _ERROR("Unable to openlogfile: %s Setting log to stdout\n", cmdLine->logFile);
     logfile = stdout;
   } else {
     VERBOSE("Successfully opened %s\n", cmdLine->logFile);
@@ -134,20 +137,20 @@
 #if !WIN32
     if (daemon(1, 1) == -1)
     {
-      ERROR("Error daemonizing. %s\n", strerror(errno));
+      _ERROR("Error daemonizing. %s\n", strerror(errno));
       exit(-1);
     }
-    (void) fprintf(stdout, "Server launching in background. pid: %d\n", (int)getpid());
+    fprintf(stdout, "Server launching in background. pid: %d\n", (int)getpid());
     fd = open("/dev/null", O_RDWR);
     if (fd == -1) {
       perror("Opening /dev/null: ");
       exit(0);
     }
     for (i = 0; i < 3; i++)
-      (void) dup2(fd, i);
-    (void) close(fd);
+      dup2(fd, i);
+    close(fd);
 #else
-   (void) printf("Fork not available on WIN32.\n");
+   printf("Fork not available on WIN32.\n");
 #endif
   }

@@ -158,13 +161,13 @@
   /* Create output dir if does not exists! */
   if (( pige_dir = opendir(cmdLine->dir)) == NULL)
   {
-    ERROR("Unable to open %s for writing\n", cmdLine->dir);
+    _ERROR("Unable to open %s for writing\n", cmdLine->dir);
 #ifdef WIN32
     if (mkdir(cmdLine->dir) != 0) {
 #else
     if (mkdir(cmdLine->dir, 0755) != 0) {
 #endif
-      ERROR("Failed trying to create %s. Verify rights.\n", cmdLine->dir);
+      _ERROR("Failed trying to create %s. Verify rights.\n", cmdLine->dir);
       exit(-1);
     } else {
       VERBOSE("Created %s\n", cmdLine->dir);
@@ -172,7 +175,7 @@
     }
   } else {
     VERBOSE("Sucessfully opened %s\n", cmdLine->dir);
-    (void) closedir(pige_dir);
+    closedir(pige_dir);
   }

   /* Start time, for uptime calculation */
@@ -204,13 +207,15 @@
    * print_icyheaders(icy_headers);
    */

+#ifndef WIN32
   if(cmdLine->useNumbers == 1)
     songs = getSongs(cmdLine->dir);
-
+#endif
+
   nextsize = 512;

   oldtitre = memory_allocation(strlen("please.delete") + 1);
-  (void) strcpy(oldtitre, "please.delete");
+  strncpy(oldtitre, "please.delete", 14);

   while (1)
   {
@@ -220,7 +225,7 @@
     retval = select(server_socket+1, &rfds, NULL, NULL, &timeout);
     if (retval <= 0)
     {
-      ERROR("Connection Error.\n");
+      _ERROR("Connection Error.\n");
       server_close(server_socket);
       server_socket = reconnect(RECONNECT_TIME, TENTATIVES, 1);
       tempsize = 0;
@@ -230,7 +235,7 @@
     size = recv(server_socket, buffer, nextsize, 0);
     if ((size == -1) || ((size == 0) && nextsize != 0))
     {
-      ERROR("Connection error in recv main() size: %d nextsize: %d\n", size, nextsize);
+      _ERROR("Connection error in recv main() size: %d nextsize: %d\n", size, nextsize);
       server_socket = reconnect(RECONNECT_TIME, TENTATIVES, 1);
       tempsize = 0;
       nextsize = 512;
@@ -240,11 +245,11 @@
     {
       if (fwrite(buffer, sizeof(char), size, output_file) != size*sizeof(char))
       {
-        ERROR("Error writing output. Disk full ?\n");
+        _ERROR("Error writing output. Disk full ?\n");
         break;
       }
       /* Many thanks to the #hurdfr team! */
-      (void) fflush(output_file);
+      fflush(output_file);
     }
     if ( tempsize == icy_headers->metaint )
     {
@@ -275,15 +280,15 @@

             buffer3 = GetId3v1(buffer2, buffer1, icy_headers->name);
             fwrite(buffer3, sizeof(char), 128, output_file);
-            free(buffer3);
-            free(buffer2);
-            free(buffer1);
+            (void)free(buffer3);
+            (void)free(buffer2);
+            (void)free(buffer1);
           }

           if (output_file)
           {
             /* VERBOSE("Closing: %d.mp3\n", lastCut.hour); */
-            (void) fclose(output_file);
+            fclose(output_file);
           }

           switch (cmdLine->intervalType)
@@ -313,10 +318,10 @@
           }
           VERBOSE("Opening: %s\n", filename);
           output_file = fopen(filename, WRITE);
-          free(filename);
+          (void)free(filename);
         }
       } else if (cmdLine->live) {
-        (void) printf("Not yet implemented.\n");
+        printf("Not yet implemented.\n");
         exit(1);
         /* Live Mode */
         /* I must write some stuff here ;) */
@@ -337,13 +342,13 @@
           fprintf(stdout, " ");

         statusline = statusLine(uptime, metacounter, icy_headers->metaint, oldtitre, nexttitre);
-        (void) fprintf(stdout, "\r%s", statusline);
+        fprintf(stdout, "\r%s", statusline);

         if ( strlen(statusline) > maxlinelength)
           maxlinelength = strlen(statusline);

         if (statusline != NULL)
-          free(statusline);
+          (void)free(statusline);
       }

       /* Stats evry countdown seconds */
@@ -354,12 +359,12 @@
         {
           if (fwrite(statusline, sizeof(char), strlen(statusline), logfile) != strlen(statusline))
           {
-            ERROR("Fwrite error.\n");
+            _ERROR("Fwrite error.\n");
             break;
           }
           /* Many thanks to the #hurdfr@freenode team! */
-          (void) fflush(logfile);
-          (void) free(statusline);
+          fflush(logfile);
+          (void)free(statusline);
         } else {
           VERBOSE("getStats returned NULL values...\n");
         }
@@ -379,7 +384,7 @@
       titre = getTitle(meta);

       if (meta != NULL)
-        free(meta);
+        (void)free(meta);

       if (titre != NULL)
       {
@@ -408,19 +413,19 @@
                     {
                       char *buffer1;
                       buffer1 = GetId3v1(curSong->title, curSong->artist, icy_headers->name);
-                      (void) fwrite(buffer1, sizeof(char), 128, output_file);
-                      free(buffer1);
+                      fwrite(buffer1, sizeof(char), 128, output_file);
+                      (void)free(buffer1);
                     }
-                    (void) fclose(output_file);
+                    fclose(output_file);
                   }

                   if (cmdLine->useNumbers == 0)
                   {
                     filename = memory_allocation(strlen(titre) + strlen(cmdLine->dir)+ 1 + strlen(extension) + 1 +1);
-                    (void) snprintf(filename, strlen(titre)+strlen(extension)+strlen(cmdLine->dir)+1+1, "%s%s.%s", cmdLine->dir, titre, extension);
+                    snprintf(filename, strlen(titre)+strlen(extension)+strlen(cmdLine->dir)+1+1, "%s%s.%s", cmdLine->dir, titre, extension);
                   } else {
                     filename = memory_allocation(5+strlen(titre) + strlen(cmdLine->dir)+ 1 + strlen(extension) + 1 + 1);
-                    (void) snprintf(filename, 5+strlen(titre)+strlen(extension)+strlen(cmdLine->dir)+1+1, "%s%.4d_%s.%s", cmdLine->dir, songs, titre, extension);
+                    snprintf(filename, 5+strlen(titre)+strlen(extension)+strlen(cmdLine->dir)+1+1, "%s%.4d_%s.%s", cmdLine->dir, songs, titre, extension);
                   }

                   if ((output_file = fopen(filename, "r")) == NULL) { /* Anti doublons */
@@ -428,31 +433,33 @@
                     output_file = fopen(filename, WRITE);
                   } else {
                     VERBOSE("File already exists %s.\n", filename);
-                    (void) fclose(output_file);
+                    fclose(output_file);
                     output_file = NULL;
                   }
-                  (void) free(filename);
+                  (void)free(filename);
                 }
               } /* Title are differents */
             } /* Oldtitre != NULL */
-            if (oldtitre != NULL) free(oldtitre);
+            if (oldtitre != NULL)
+              (void)free(oldtitre);
             oldtitre = memory_allocation(strlen(titre) + 1);
-            (void) strncpy(oldtitre, titre, strlen(titre));
+            strncpy(oldtitre, titre, strlen(titre));
           } else {
             /* Title is "ASUIVRE" */
-            if (nexttitre != NULL) free(nexttitre);
+            if (nexttitre != NULL)
+              (void)free(nexttitre);

             nexttitre = memory_allocation(strlen(titre) + 1);
-            (void) strncpy(nexttitre, titre, strlen(titre));
+            strncpy(nexttitre, titre, strlen(titre));
           }
           if (titre != NULL)
-            free(titre);
+            (void)free(titre);

         } /* Strlen(titre > 0) */
       }
       tempsize = 0; /* tempsize = 0: chunk received successfully. Awaiting next chunk */
     } else if (tempsize > icy_headers->metaint) {
-      ERROR("Error tempsize > metaint\n");
+      _ERROR("Error tempsize > metaint\n");
       break;
     } else
       tempsize = tempsize + size;
@@ -463,14 +470,18 @@
       nextsize = 512;
   } /* infinite loop */

-  (void) server_close(server_socket);
+  server_close(server_socket);

   /* cleanup */
-  if (icy_headers != NULL) free(icy_headers);
-  if (output_file != NULL) fclose(output_file);
-  if (logfile != stdout) fclose(logfile);
-  (void) free(cmdLine);
-  (void) free(cPigeStats);
+  if (icy_headers != NULL)
+    (void)free(icy_headers);
+  if (output_file != NULL)
+    fclose(output_file);
+  if (logfile != stdout)
+    fclose(logfile);
+
+  (void)free(cmdLine);
+  (void)free(cPigeStats);

   return 0;
 }
@@ -491,9 +502,10 @@
   suffix[0] = 0;

   icy = malloc(sizeof(icyHeaders));
-
+
   /* Usefull when radio doesn't specify icy name */
   icy->name = "No Name";
+  icy->content_type = "audio/mpeg";

   if (headers == NULL)
     return NULL;
@@ -549,7 +561,7 @@
       if (strncmp(prefix, "icy-notice1", 11) == 0)
       {
         icy->notice1 = memory_allocation(strlen(suffix) + 1);
-        (void) strncpy(icy->notice1, suffix, strlen(suffix));
+        strncpy(icy->notice1, suffix, strlen(suffix));
       }
       if (strncmp(prefix, "icy-notice2", 11) == 0)
       {
@@ -557,25 +569,25 @@
           icy->type = 0;

         icy->notice2 = memory_allocation(strlen(suffix)+1);
-        (void) strncpy(icy->notice2, suffix, strlen(suffix));
+        strncpy(icy->notice2, suffix, strlen(suffix));
       }

       if (strncmp(prefix, "icy-name", 8) == 0)
       {
         icy->name = memory_allocation(strlen(suffix)+1);
-        (void) strncpy(icy->name, suffix, strlen(suffix));
+        strncpy(icy->name, suffix, strlen(suffix));
       }

       if (strncmp(prefix, "icy-genre", 9) == 0)
       {
         icy->genre = memory_allocation(strlen(suffix)+1);
-        (void) strncpy(icy->genre, suffix, strlen(suffix));
+        strncpy(icy->genre, suffix, strlen(suffix));
       }

       if (strncmp(prefix, "icy-url", 7) == 0)
       {
         icy->url = memory_allocation(strlen(suffix)+1);
-        (void) strncpy(icy->url, suffix, strlen(suffix));
+        strncpy(icy->url, suffix, strlen(suffix));
       }

       if (strncmp(prefix, "icy-pub", 7) == 0)
@@ -587,14 +599,16 @@
       if (strncmp(prefix, "icy-br", 6) == 0 )
         icy->br = (int) atoi((char *) &suffix[0]);

-      if (strncmp(prefix, "content-type", 12) == 0 ) {
+      if ((strncmp(prefix, "content-type", 12) == 0 ) ||
+        (strncmp(prefix, "Content-Type", 12) == 0))
+      {
         icy->content_type = memory_allocation(strlen(suffix)+1);
-        (void) strncpy(icy->content_type, suffix, strlen(suffix));
+        strncpy(icy->content_type, suffix, strlen(suffix));
       }
     }
   } /*  for eachline */

-  (void) free(headers);
+  (void)free(headers);
   return icy;
 }

@@ -621,7 +635,7 @@
   cu = getUptime(uptime);
   line = memory_allocation(300); /* Exessif. */

-  (void) sprintf(line, "Uptime: %d days, %d hours, %d min, %d seconds\nDownloaded: %lldKo\nSongs played: %ld\nReconnections: %ld\n", cu->day, cu->hour, cu->min, cu->sec, (long long unsigned int)((metacounter*metaint)/1024), cPigeStats->songs, cPigeStats->reconnections);
+  sprintf(line, "Uptime: %d days, %d hours, %d min, %d seconds\nDownloaded: %lldKo\nSongs played: %ld\nReconnections: %ld\n", cu->day, cu->hour, cu->min, cu->sec, (long long unsigned int)((metacounter*metaint)/1024), cPigeStats->songs, cPigeStats->reconnections);

   return line;
 }
@@ -636,16 +650,16 @@
   /* Pas terrible... */
   line = memory_allocation(300);

-  (void) sprintf(line, "[%dj %dh:%dm:%ds][%lldKo] ", cu->day, cu->hour, cu->min, cu->sec, (long long unsigned int)((metacounter * metaint) / 1024));
+  sprintf(line, "[%dj %dh:%dm:%ds][%lldKo] ", cu->day, cu->hour, cu->min, cu->sec, (long long unsigned int)((metacounter * metaint) / 1024));
   if (cmdLine->pige)
-    (void) sprintf(line+strlen(line), "%dh -> %dh ", getHour(), getHour()+1);
+    sprintf(line+strlen(line), "%dh -> %dh ", getHour(), getHour()+1);

   if (titre != NULL)
-    (void) sprintf(line+strlen(line), "%s", titre);
+    sprintf(line+strlen(line), "%s", titre);

   if (nexttitre != NULL)
     if (strstr(nexttitre, titre) == NULL)
-      (void) sprintf(line+strlen(line), " -> %s", nexttitre);
+      sprintf(line+strlen(line), " -> %s", nexttitre);

   return line;
 }
@@ -669,7 +683,7 @@

   if (serversPool == NULL)
   {
-    ERROR("Error: not any server defined.\n");
+    _ERROR("Error: not any server defined.\n");
     exit(1);
   }

@@ -677,7 +691,7 @@
   settings = getSettings(serversPool, &poolPosition);
   if (settings == NULL)
   {
-    ERROR("No valid settings in urlPool.\n");
+    _ERROR("No valid settings in urlPool.\n");
     exit(1);
   }

@@ -690,7 +704,7 @@
     settings = getSettings(serversPool, &poolPosition);
     if (settings == NULL)
     {
-      ERROR("No valid settings in urlPool.\n");
+      _ERROR("No valid settings in urlPool.\n");
       exit(1);
     }

@@ -708,7 +722,7 @@

   if (sendHeaders(server_socket, settings->mountpoint, 1) <= 0)
   {
-    ERROR("Error sending headers: 0 byte sent.\n");
+    _ERROR("Error sending headers: 0 byte sent.\n");
     goto RECO;
   }

@@ -731,21 +745,21 @@
   headers = memory_allocation(256);

   if (mountpoint == NULL)
-    (void) sprintf(headers, "GET / HTTP/1.0\r\n");
+    sprintf(headers, "GET / HTTP/1.0\r\n");
   else
-    (void) sprintf(headers, "GET %s HTTP/1.0\r\n", mountpoint);
+    sprintf(headers, "GET %s HTTP/1.0\r\n", mountpoint);

   if (metadata)
-    (void) strcat(headers, "Icy-MetaData:1\r\n");
+    strncat(headers, "Icy-MetaData:1\r\n", 16);
   else
-    (void) strcat(headers, "Icy-MetaData:0\r\n");
+    strncat(headers, "Icy-MetaData:0\r\n", 16);

-  (void) strcat(headers, "User-Agent:");
-  (void) strcat(headers, USER_AGENT);
-  (void) strcat(headers, "\r\n\r\n");
+  strncat(headers, "User-Agent:", 11);
+  strncat(headers, USER_AGENT, strlen(USER_AGENT));
+  strncat(headers, "\r\n\r\n", 4);

   ret = send(serversocket, headers, strlen(headers), 0);
-  (void) free(headers);
+  (void)free(headers);
   return ret;
 }

@@ -766,12 +780,12 @@
   retval = select(server_socket+1, &rfds, NULL, NULL, &timeout);
   if (retval <= 0)
   {
-    ERROR("Erreur de connexion!\n");
-    (void) server_close(server_socket);
+    _ERROR("Erreur de connexion!\n");
+    server_close(server_socket);
     return NULL;
   } else if (recv(server_socket, &c, 1, 0) != 1) {
-    ERROR("Error reading from shoutcast socket\n");
-    (void) server_close(server_socket);
+    _ERROR("Error reading from shoutcast socket\n");
+    server_close(server_socket);
     return NULL;
   }

@@ -786,10 +800,10 @@
     retval = select(server_socket+1, &rfds, NULL, NULL, &timeout);
     if (retval <= 0)
     {
-      (void) printf("Connection error in select. (readmeta)\n");
-      (void) free(buffer);
-      (void) free(meta);
-      (void) server_close(server_socket);
+      printf("Connection error in select. (readmeta)\n");
+      (void)free(buffer);
+      (void)free(meta);
+      server_close(server_socket);
       return NULL;
     } else {
       readsize = 0;
@@ -802,21 +816,21 @@
         retval = select(server_socket+1, &rfds, NULL, NULL, &timeout);
         if (retval <= 0)
         {
-          ERROR("Erreur de connexion!\n");
-          (void) server_close(server_socket);
+          _ERROR("Erreur de connexion!\n");
+          server_close(server_socket);
           return NULL;
         } else {
           size = recv(server_socket, buffer, (c*16 - readsize), 0);
           if (size <= 0)
           {
             VERBOSE("Megaproblem here.\n");
-            (void) server_close(server_socket);
+            server_close(server_socket);
           }
           readsize += size;
-          (void) strncat(meta, buffer, size);
+          strncat(meta, buffer, size);
         }
       }
-      (void) free(buffer);
+      (void)free(buffer);
     }
   } else {
     /* Title was not sent. */
@@ -903,13 +917,13 @@

   if (strlen(cursong->title) == 0)
   {
-    (void) free(cursong->title);
+    (void)free(cursong->title);
     cursong->title = NULL;
   }

   if (strlen(cursong->artist) == 0)
   {
-    (void) free(cursong->artist);
+    (void)free(cursong->artist);
     cursong->artist = NULL;
   }

@@ -956,7 +970,7 @@
   {
     return 1;
   } else {
-    ERROR("Error: return code from HTTP server: %d.\n", returnCode);
+    _ERROR("Error: return code from HTTP server: %d.\n", returnCode);
     return 0;
   }
 }
@@ -973,7 +987,7 @@
   char c;

   buffer = memory_allocation(256);
-  (void) memset(headers, 0, 4096);
+  memset(headers, 0, 4096);

   /* For select() it's a global struct. */
   timeout.tv_sec = SOCKET_TIMEOUT;
@@ -982,13 +996,13 @@
   retval = select(server_socket+1, &rfds, NULL, NULL, &timeout);
   if (retval <= 0)
   {
-    ERROR("Erreur de connexion in getHeaders().\n");
+    _ERROR("Erreur de connexion in getHeaders().\n");
     goto error;
   }

   if (recv(serversocket, buffer, 256, 0) <= 0)
   {
-    ERROR("Erreur de connexion.\n");
+    _ERROR("Erreur de connexion.\n");
     goto error;
   }

@@ -998,7 +1012,7 @@
     goto error;
   }

-  free(buffer);
+  (void)free(buffer);
   buffer = NULL;

   headers[0] = 0;
@@ -1015,7 +1029,7 @@
       goto error;

     } else if (recv(server_socket, &c, 1, 0) != 1) {
-      ERROR("Error reading data in getHeaders()\n");
+      _ERROR("Error reading data in getHeaders()\n");
       goto error;
     }

@@ -1033,13 +1047,13 @@
   headers[i] = 0;
   if (!strlen(headers)) { return NULL; }
   ptr = memory_allocation(strlen(headers)+1);
-  (void) strncpy(ptr, headers, strlen(headers));
+  strncpy(ptr, headers, strlen(headers));
   return ptr;

 error:
-  (void) server_close(server_socket);
+  server_close(server_socket);
   if (buffer != NULL)
-    free(buffer);
+    (void)free(buffer);

   return NULL;
 }
@@ -1053,7 +1067,7 @@
   chunk = memory_allocation(128);

   /* id3v1 tag */
-  (void) sprintf(chunk, "TAG");
+  sprintf(chunk, "TAG");

   /* Title */
   relativePointer = chunk + 3; /* 3 octets */
@@ -1061,13 +1075,13 @@
     padding = (30 - strlen(titre));
     if (padding < 0)
     {
-      (void) snprintf(relativePointer+3, 31, "%s", titre);
+      snprintf(relativePointer+3, 31, "%s", titre);
     } else {
-      (void) sprintf(relativePointer, "%s", titre);
-      (void) memset(relativePointer + (30-padding), 0, padding);
+      sprintf(relativePointer, "%s", titre);
+      memset(relativePointer + (30-padding), 0, padding);
     }
   } else {
-    (void) memset(relativePointer, 0, 30);
+    memset(relativePointer, 0, 30);
   }

   /* Artist */
@@ -1075,13 +1089,13 @@
   if (artiste) {
     padding = (30 - strlen(artiste));
     if (padding < 0) {
-      (void) snprintf(relativePointer, 31, "%s", artiste);
+      snprintf(relativePointer, 31, "%s", artiste);
     } else {
-      (void) sprintf(relativePointer, "%s", artiste);
-      (void) memset(relativePointer + (30 - padding), 0, padding);
+      sprintf(relativePointer, "%s", artiste);
+      memset(relativePointer + (30 - padding), 0, padding);
     }
   } else {
-    (void) memset(relativePointer, 0, 30);
+    memset(relativePointer, 0, 30);
   }

   /* Album (on met l'url de la radio ...) */
@@ -1089,27 +1103,27 @@
   if (radioName != NULL) {
     padding = (30 - strlen(radioName));
     if (padding < 0) {
-      (void) snprintf(relativePointer, 31, "%s", radioName);
+      snprintf(relativePointer, 31, "%s", radioName);
     } else {
-      (void) sprintf(relativePointer, "%s", radioName);
-      (void) memset(relativePointer + (30-padding), 0, padding);
+      sprintf(relativePointer, "%s", radioName);
+      memset(relativePointer + (30-padding), 0, padding);
     }
   } else {
-    (void) memset(relativePointer, 0, 30);
+    memset(relativePointer, 0, 30);
   }

   /* Year */
   relativePointer = relativePointer + 30; /* 93 octets */
-  (void) memset(relativePointer, 0, 4);
+  memset(relativePointer, 0, 4);

   /* Comment */
   relativePointer = relativePointer + 4; /* 97 octets */
-  (void) snprintf(relativePointer, 31, "by cPige http://ed.zehome.com/");
+  snprintf(relativePointer, 31, "by cPige http://ed.zehome.com/");
   /* Ouah la chance, ça rentre! */

   /* genre */
   relativePointer = relativePointer + 30; /* 127 octets */
-  (void) memset(relativePointer, 1, 1);
+  memset(relativePointer, 1, 1);

   /* 128 bytes ! We won :) */
   return chunk;
@@ -1145,13 +1159,13 @@
   VERBOSE("Using win32 sockets\n");
   WSADATA WSAData;
   if((res = WSAStartup(MAKEWORD(2,0), &WSAData)) != 0)
-    (void) printf("Impossible d'initialiser l'API Winsock 2.0\n");
+    printf("Impossible d'initialiser l'API Winsock 2.0\n");
 #endif

   VERBOSE("Entring Server_connect\n");

   /* on initialise la socket */
-  (void) memset(&serverSockAddr, 0, sizeof(serverSockAddr));
+  memset(&serverSockAddr, 0, sizeof(serverSockAddr));
   VERBOSE("Servername: %s\n", servername);
   VERBOSE("Port: %d\n", serverport);
   hostAddr = inet_addr(servername);
@@ -1159,15 +1173,15 @@
   /* If it is an ip address */
   if ((long) hostAddr != (long)-1)
   {
-    (void) memcpy(&serverSockAddr.sin_addr, &hostAddr, sizeof(hostAddr));
+    memcpy(&serverSockAddr.sin_addr, &hostAddr, sizeof(hostAddr));
   } else {
     serverHostEnt = gethostbyname(servername);
     if (serverHostEnt == NULL)
     {
-      ERROR("Error with gethostbyname. exiting.\n");
+      _ERROR("Error with gethostbyname. exiting.\n");
       return -1;
     }
-    (void) memcpy(&serverSockAddr.sin_addr, serverHostEnt->h_addr, serverHostEnt->h_length);
+    memcpy(&serverSockAddr.sin_addr, serverHostEnt->h_addr, serverHostEnt->h_length);
   }
   serverSockAddr.sin_port = htons(serverport);
   serverSockAddr.sin_family = AF_INET; /* FIXEME: IPv6 Support ? */
@@ -1175,7 +1189,7 @@
   /* creation de la socket */
   if ( (server_socket = socket(AF_INET, SOCK_STREAM, 0)) < 0)
   {
-    ERROR("Error creating shoutcast socket. Exiting.\n");
+    _ERROR("Error creating shoutcast socket. Exiting.\n");
     return -2;
   }

@@ -1185,7 +1199,7 @@
   /* requete de connexion */
   if(connect( server_socket, (struct sockaddr *)&serverSockAddr, sizeof(serverSockAddr)) < 0 )
   {
-    ERROR("Remote host connection failed.\n");
+    _ERROR("Remote host connection failed.\n");
     return -3;
   } else {
     VERBOSE("Connected.\n");
@@ -1200,8 +1214,8 @@
 int server_close (int serversocket)
 {
   VERBOSE("Closing server connection.\n");
-  (void) shutdown(server_socket, 2);
-  (void) close(server_socket);
+  shutdown(server_socket, 2);
+  close(server_socket);
   server_socket = 0;
   VERBOSE("Server connection closed.\n");
   return -1;
@@ -1209,7 +1223,7 @@

 void print_credits()
 {
-  (void) printf ("cPige %s by Laurent Coustet (c) 2005\n", VERSION);
+  printf ("cPige %s by Laurent Coustet (c) 2005\n", VERSION);
   return;
 }

@@ -1218,7 +1232,7 @@
   printf ("cPige help. cPige is a Laurent Coustet product.\n");
   printf ("For more informations about me and my software\n");
   printf ("please visit http://ed.zehome.com/\n\n");
-  printf ("Usage: ./cpige -h http://stream.frequence3.net:8000/ -d /home/ed/Pige -l logfile.log\n\n");
+  printf ("Usage: ./cpige -h http://stream-hautdebit.frequence3.net:8000/ -d /home/ed/Pige -l logfile.log\n\n");
   printf ("    -h host to connect to.\n");
   printf ("    -V show cpige Version.\n");
   printf ("    -d directory save stream to this directory.\n");
@@ -1229,7 +1243,9 @@
   printf ("    -l Path to logfile.\n");
   printf ("    -I [h|m] pige mode will cut on a hour by hour basis or min by min basis.\n");
   printf ("    -i nb how many \"nb\" hour(s) or minute(s) we should wait before cutting.\n");
+#ifndef WIN32
   printf ("    -n cPige will append xxxx to file in 'non pige mode', where xxxx is a number.\n");
+#endif
   /* printf ("    -L live mode (takes no argument), save entire file until 401. (not implemented)\n"); */
   return;
 }
@@ -1274,7 +1290,7 @@

   cmdLine->logFile    = "cpige.log";
   cmdLine->dir        = malloc(3);
-  strcpy(cmdLine->dir, "./");
+  strncpy(cmdLine->dir, "./", 3);

   for (i = 1; i < argc; i++)
   {
@@ -1284,8 +1300,8 @@
       /* from streamripper */
       if ((i == (argc-1)) || (argv[i+1][0] == '-'))
       {
-        (void) print_help();
-        (void) fprintf(stderr, "option %s requires an argument\n", argv[i]);
+        (void)print_help();
+        fprintf(stderr, "option %s requires an argument\n", argv[i]);
         exit(1);
       }
     }
@@ -1309,35 +1325,35 @@
       case 'd':
         i++;
         cmdLine->dir = memory_allocation(strlen(argv[i]) + 1 + 1);
-        (void) strncpy(cmdLine->dir, argv[i], strlen(argv[i]));
+        strncpy(cmdLine->dir, argv[i], strlen(argv[i]));

         if ((argv[i][(strlen(argv[i]))] != '/') && (argv[i][(strlen(argv[i]))] != '\\')) {
           cmdLine->dir[(strlen(cmdLine->dir))] = '/';
           cmdLine->dir[(strlen(cmdLine->dir)+1)] = 0;
         }
         break;
-
+#ifndef WIN32
       case 'n':
         cmdLine->useNumbers = 1;
         break;
-
+#endif
       case 'l':
         i++;
         cmdLine->logFile = memory_allocation(strlen(argv[i]) +1);
-        (void) strncpy(cmdLine->logFile, argv[i], strlen(argv[i]));
+        strncpy(cmdLine->logFile, argv[i], strlen(argv[i]));
         break;

       case 'P':
         if (cmdLine->live == 1)
         {
-          (void) printf("You can't use Live Mode and Pige mode simultaneously.\n");
+          printf("You can't use Live Mode and Pige mode simultaneously.\n");
           exit(-1);
         }
         if (cmdLine->pige == 1)
           break;

         cmdLine->pige = 1;
-        (void) printf("Pige Mode activated.\n");
+        printf("Pige Mode activated.\n");
         break;

       case 'q':
@@ -1371,7 +1387,7 @@
         if (cmdLine->pige != 1)
         {
           cmdLine->pige = 1;
-          (void) printf("Pige Mode activated.\n");
+          printf("Pige Mode activated.\n");
         }

         if ( *argv[i] == 'h' || *argv[i] == 'H' )
@@ -1399,7 +1415,7 @@
         if (cmdLine->pige != 1)
         {
           cmdLine->pige = 1;
-          (void) printf("Pige Mode activated.\n");
+          printf("Pige Mode activated.\n");
         }

         cmdLine->interval = atoi(argv[i]);
@@ -1455,6 +1471,8 @@
 /* Returns what song number we lastly saved
  * the stream to
  */
+
+#ifndef WIN32
 int getSongs(char *dir)
 {
   DIR *dirp;
@@ -1496,6 +1514,7 @@

   return songs;
 }
+#endif

 int checkInterval()
 {
@@ -1510,7 +1529,7 @@
       ret = 1;
   } else {
     ret = 1;
-    (void) fprintf(stderr, "Intenal Error: intervalType unknown!\n");
+    fprintf(stderr, "Intenal Error: intervalType unknown!\n");
   }

   return ret;
diff -ru cpige/cpige.h cpige-1.3-new/cpige.h
--- cpige/cpige.h	Fri Nov 25 09:46:32 2005
+++ cpige-1.3-new/cpige.h	Wed Nov 30 05:32:58 2005
@@ -126,7 +126,9 @@
 int mustCut(lastCut *cut);
 int getCloserInterval(int now, int interval);

+#ifndef WIN32
 int getSongs(char *dir);
+#endif

 stats *cPigeStats;

Only in cpige-1.3-new/: cpige.log
diff -ru cpige/debug.c cpige-1.3-new/debug.c
--- cpige/debug.c	Wed Nov 16 07:34:01 2005
+++ cpige-1.3-new/debug.c	Wed Nov 30 06:33:56 2005
@@ -35,8 +35,8 @@
   now = time(NULL);
   if (now == (time_t)-1)
   {
-    (void) fprintf(stderr, "Can't log line: time() failed.\n");
-    (void) perror("time");
+    fprintf(stderr, "Can't log line: time() failed.\n");
+    perror("time");
     return;
   }

@@ -48,7 +48,7 @@
 #endif
   if (curTime == NULL)
   {
-    fprintf(stderr, "Can't log line: localtime_r() failed.\n");
+    fprintf(stderr, "Can't log line: localtime(_r)() failed.\n");
     return;
   }

@@ -62,14 +62,14 @@
   sprintf(z_format, "[%.2d:%.2d:%.2d] [DEBUG PRIO %d][File: %s][Line: %d] %s", curTime->tm_hour, curTime->tm_min, curTime->tm_sec, _debug_priority, _debug_filename, _debug_line, _debug_message);

 #ifndef WIN32
-  free(curTime);
+  (void)free(curTime);
 #endif

   vfprintf(_Debug_Output, z_format, ap);

   fflush(_Debug_Output);

-  free(z_format);
+  (void)free(z_format);
   va_end(ap);
   return;
 }
diff -ru cpige/debug.h cpige-1.3-new/debug.h
--- cpige/debug.h	Wed Nov 16 07:34:01 2005
+++ cpige-1.3-new/debug.h	Wed Nov 30 06:22:29 2005
@@ -15,7 +15,7 @@

 #include <stdio.h>

-#define DEBUGLEVEL          3
+#define DEBUGLEVEL          1

 #define DEBUG_ERR           1
 #define DEBUG_MSG           2
@@ -23,7 +23,7 @@

 #define DEBUG(priority, ...) _DEBUG(__LINE__, __FILE__, priority, __VA_ARGS__)

-#define ERROR(...)   DEBUG(DEBUG_ERR, __VA_ARGS__)
+#define _ERROR(...)   DEBUG(DEBUG_ERR, __VA_ARGS__)
 #define MESSAGE(...) DEBUG(DEBUG_MSG, __VA_ARGS__)
 #define VERBOSE(...) DEBUG(DEBUG_ALL, __VA_ARGS__)

diff -ru cpige/pool.c cpige-1.3-new/pool.c
--- cpige/pool.c	Sat Nov 12 05:06:53 2005
+++ cpige-1.3-new/pool.c	Wed Nov 30 06:33:31 2005
@@ -32,9 +32,9 @@

   if (new->settings == NULL)
   {
-    ERROR("Error parsing URL `%s'.\n", url);
-    free(new->url);
-    free(new);
+    _ERROR("Error parsing URL `%s'.\n", url);
+    (void)free(new->url);
+    (void)free(new);
     return pool;
   }

diff -ru cpige/tool.c cpige-1.3-new/tool.c
--- cpige/tool.c	Sat Nov 12 05:06:53 2005
+++ cpige-1.3-new/tool.c	Wed Nov 30 06:33:15 2005
@@ -104,9 +104,9 @@

 void printServSettings(serverSettings_t *set)
 {
-  (void) printf("host: %s\n", set->serverAddr);
-  (void) printf("port: %d\n", set->port);
-  (void) printf("mp: %s\n", set->mountpoint);
+  printf("host: %s\n", set->serverAddr);
+  printf("port: %d\n", set->port);
+  printf("mp: %s\n", set->mountpoint);
   return;
 }
2005-12-02 00:09:16 +00:00
Tom McLaughlin
531ef35a4c Add SHA256 to my BSD# ports
Project by:	BSD# <http://www.mono-project.com/Mono:FreeBSD>
2005-12-01 03:39:25 +00:00
Alexey Dokuchaev
3a847796b3 SHA256'ify my ports. 2005-11-30 14:01:29 +00:00
Emanuel Haupt
6229fea156 Add SHA256 hashes to my ports 2005-11-30 14:01:14 +00:00
Jean-Yves Lefort
724fe38c0f The linuxulator does not support Linux amd64 code. When ${ARCH} is
amd64, use the i386 RPM packages.
2005-11-29 10:06:02 +00:00
Joe Marcus Clarke
7450a7749a Update to 0.9.2. 2005-11-28 19:12:18 +00:00
Bill Fenner
bc1e74ae68 Make sure to apply the distfile group to the whole ${MASTER_SITE_foo}.
Switch to PATCH_SITE_SUBDIR instead of substituting %SUBDIR%.

Approved by:	Roman Bogorodskiy (MAINTAINER)
2005-11-28 19:03:07 +00:00
Sergey Matveychuk
e6d6d84207 - Fix build. Unbreak.
PR:		ports/89641
Submitted by:	Daniel Roethlisberger (maintainer)
2005-11-28 11:09:22 +00:00
Edwin Groothuis
b91e9ae856 fix maintainer: oyvind@moll.no 2005-11-27 11:47:46 +00:00
Adam Weinberger
5e322f5e1e Update to 1.6.4.
Thanks to:	edwin's version check script
2005-11-27 01:06:06 +00:00
Edwin Groothuis
46aaad32ff Mark as deprecated for 2006-03-31.
1.0.8 is the 2000 version, 1.4.3 is current. Please send
	patches or take maintainership!
2005-11-27 00:41:51 +00:00
Edwin Groothuis
d4e104c011 Upgrade to 1.3 2005-11-26 21:55:23 +00:00
Roman Bogorodskiy
fc0bd34d40 Bump PORTREVISION because of my previous commit.
Pointed out by:		kris
2005-11-26 21:40:00 +00:00
Michael Johnson
6110bbedcc - Update to 1.1.11 2005-11-26 21:36:06 +00:00
Jean-Yves Lefort
4590e077a7 Add linux-openal. 2005-11-26 19:30:21 +00:00
Jean-Yves Lefort
f080d1bc66 - Update to 1.3.0-4
- Take maintainership

Approved by:	maintainer
2005-11-26 19:28:57 +00:00
Jean-Yves Lefort
bb2305702b Add linux-alsa-lib. 2005-11-26 19:25:48 +00:00
Jean-Yves Lefort
814a70f23d Add linux-libvorbis. 2005-11-26 19:23:10 +00:00
Jean-Yves Lefort
c8d295d6c0 Add linux-libogg. 2005-11-26 19:20:39 +00:00
Jean-Yves Lefort
ba57487b43 Add my RPM support infrastructure. 2005-11-26 19:18:51 +00:00
Roman Bogorodskiy
a00535f542 Fix submission of tracks with a tag element greater than 256 characters.
Submitted by:	David Scheidt <dscheidt@panix.com>
Obtained from:	Pipian (plugin's author)
2005-11-26 17:20:40 +00:00
Pav Lucistnik
978d0d9335 - Update to 3.4
PR:		ports/89562
Submitted by:	Jon Jenssen <jon.jenssen@eunet.no>
2005-11-26 14:39:41 +00:00
Mark Linimon
256057ca4a Reset maintainer at his request.
PR:		ports/89566
2005-11-26 05:13:18 +00:00
Edwin Groothuis
bb9758260c Reset maintainer:
<oyvindmo@initio.no>: host antivirus.graficonn.no[62.92.112.17] said: 554
    <oyvindmo@initio.no>: Recipient address rejected: This user no longer
    exists. See http://www.moll.no/oyvind/ for current contact info. (in reply
    to RCPT TO command)
2005-11-26 01:32:52 +00:00
Pav Lucistnik
1cab036aad - Style: don't quote COMMENT, it looks nasty in make describe output 2005-11-25 22:36:27 +00:00
Pav Lucistnik
d53f2613a2 - Style: ports@freebsd.org -> ports@FreeBSD.org 2005-11-25 22:29:24 +00:00
Pav Lucistnik
d3639835ab - Add SHA256
Requested by:	maintainer
2005-11-25 21:47:35 +00:00
Emanuel Haupt
124f666f75 - Change maintainer address
- Add SHA256 hash

PR:		89542
Submitted by:	Herbert J. Skuhra <h.skuhra@gmail.com> (maintainer)
2005-11-25 18:28:22 +00:00
Pav Lucistnik
6d7f8c459f - Add SHA256 2005-11-25 15:48:16 +00:00
Volker Stolz
6673a9a415 - Use PLIST_FILES/PORTDOCS
- Prune some options (overkill, can be handled by CFLAGS)
2005-11-25 13:06:36 +00:00
Edwin Groothuis
3c792e8ab7 Remove soulwax.net, it's a spammers website now. 2005-11-25 12:45:15 +00:00
Edwin Groothuis
d25321108d and while we're at it, make portlint happy and add sha256 checksum 2005-11-25 12:43:45 +00:00
Edwin Groothuis
308fb7659d ftp.aquezada.com doesn't support anonymous logins 2005-11-25 12:43:02 +00:00
Edwin Groothuis
51639bfe44 younggods.net has disappered from the net 2005-11-25 12:42:13 +00:00
Edwin Groothuis
65645f69f8 ftp.megamirror.com has disappeared. 2005-11-25 12:39:50 +00:00
Edwin Groothuis
dcd18029f6 Fix WWW in pkg-plist
Noticed by: YADFSR
2005-11-25 12:36:59 +00:00
Edwin Groothuis
1144eb9e9d http://www.soulwax.net/freebsd 500s to a Wax website
See http://people.freebsd.org/~fenner/portsurvey/audio.html#abcde
2005-11-25 12:34:18 +00:00
Joe Marcus Clarke
e17850c530 Update to 2.12.3. 2005-11-24 17:07:45 +00:00
Simon Barner
f50a6c5196 Add SHA256 for my ports (that don't already have it). 2005-11-24 14:08:01 +00:00
Jean-Yves Lefort
80d0833c0e - Fix OSS support:
OpenAL uses a buffer size of 1024 bytes, which is too small on
    some systems and/or with some applications, causing heavy drops in
    the audio output. I solve the problem by using the value returned
    by SNDCTL_DSP_GETBLKSIZE rather than 1024.
- Add options for enabling aRts, esd, SDL, vorbis and smpeg support
- Enable capture
- Fix info file handling (install in post-install, and do not use
  install-info since bsd.port.mk takes care of it)

PR:		ports/88728
Submitted by:	jylefort
Approved by:	maintainer timeout (15 days)
2005-11-24 06:49:56 +00:00
Pav Lucistnik
6329c4d7f9 - Add some SHA256 checksums 2005-11-23 23:29:54 +00:00
Pav Lucistnik
469ca3d4c9 - Make fetchable 2005-11-23 23:29:30 +00:00
Pav Lucistnik
33e405cf6a - BROKEN: Unfetchable 2005-11-23 23:16:57 +00:00
Pav Lucistnik
e05544d7ba - Add SHA256 checksums 2005-11-23 22:41:05 +00:00
Pav Lucistnik
a309483668 - Add SHA256
Requested by:	adamw (maintainer)
2005-11-23 21:48:15 +00:00
Pav Lucistnik
0cd0244e86 - Add some SHA256s 2005-11-23 17:38:02 +00:00
Florent Thoumie
74b5198a10 - Rename and update actual patch to fix -o output bug.
PR:		ports/89421
Submitted by:	maintainer
2005-11-23 12:02:47 +00:00
Jean-Yves Lefort
b5b837e636 OPTIONSify.
PR:		ports/89117
Submitted by:	Pawel Wieleba <P.Wieleba@iem.pw.edu.pl>
Approved by:	maintainer
2005-11-22 23:55:38 +00:00
Emanuel Haupt
27498a2016 - unbreak, LICENSE file has changed
- provide SHA256 hash
- nuke pkg-plist
- restore original maintainership

PR:		89354
Submitted by:	siseci@EnderUNIX.org
2005-11-22 15:16:12 +00:00
Marcus Alves Grando
4a62ddefe9 Update to 0.98.3 (Now requires perl >= 5.8)
PR:		89283
Submitted by:	David Le Brun <david@dyn-ns.net> (maintainer)
2005-11-22 12:49:05 +00:00
Edwin Groothuis
e1e099fcf9 Update port: audio/spiralsynth update MASTER_SITE and pkg-descr
- Update MASTER_SITE to fix fetch problem and WWW on pkg-descr
	- Maintainer has been CCed

Also added SHA256

----
This PR has been selected to inform you about my unhappines with
regarding about the current implementation of the silly "To see
this PR with email addresses displayed, enter the code from the
image and submit:" forms.
----

PR:		ports/87940
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-11-22 07:40:58 +00:00
Roman Bogorodskiy
bd18aceda7 Drop maintainership since project's author is a moron. 2005-11-21 15:29:28 +00:00
Kris Kennaway
4b1eb58da6 BROKEN: Does not compile 2005-11-21 01:26:53 +00:00
Brooks Davis
ed48a53180 Upgrade to 6.2.1. Mostly a bugfix release.
Also, switch the style of patch to Bin/build-perl-modules.pl to remove
lines rather than commenting them out.
2005-11-20 02:32:13 +00:00
Sergey Matveychuk
af25605aca - Fix a master site URL
- Remove EXPIRATION_DATE

PR:		ports/89255
Submitted by:	Andrey Slusar
Approved by:	no maintainer reaction on broken port for three weeks
2005-11-19 20:14:51 +00:00
Joe Marcus Clarke
e1ab5d2c25 Add a missing dependency on gnomedocutils.
Reported by:	pointyhat via kris
2005-11-19 19:51:42 +00:00
Ade Lovett
c2d62ca97a Switch to <target>:: convention for both patch-autotools and run-autotools,
to allow for easier overriding of these targets by port Makefiles, if
they need to.
2005-11-19 06:02:20 +00:00
Joe Marcus Clarke
b33cb8004b Mark broken on 4.X.
Reported by:	pointyhat via kris
2005-11-19 03:56:58 +00:00
Michael Johnson
c959ffbafc - Update to 0.9.93 2005-11-19 00:18:47 +00:00
Pav Lucistnik
d6fa0abf2a - Attempt to fix build on pointyhat 2005-11-18 22:53:33 +00:00
Marcus Alves Grando
26725cf3e4 Update to 2.9.8
Add SHA256

PR:		89231
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-11-18 16:35:29 +00:00
Pav Lucistnik
5a0523e1e6 - Run under user shoutcast
- Patch sample config file

PR:		ports/88849
Submitted by:	Gabor Kovesdan <gabor.kovesdan@t-hosting.hu> (maintainer)
2005-11-18 16:20:59 +00:00
Max Khon
b55b971ee3 Add SHA256 checksum. 2005-11-17 19:11:10 +00:00
Pav Lucistnik
d54e7e564a - Update to 0.1.0
PR:		ports/89118
Submitted by:	Franz Klammer <klammer@webonaut.com> (maintainer)
2005-11-17 12:36:28 +00:00
Emanuel Haupt
92444025d7 - Add additional master site
- Add SHA256 hash

Notified by:	pointyhat via kris
2005-11-16 08:44:22 +00:00
Volker Stolz
133f260f1b Update WWW-tag
PR:		ports/87931
Submitted by:	Jean Milanez Melo
Approved by:	maintainer timeout
2005-11-15 16:33:55 +00:00
Ade Lovett
54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00
Kris Kennaway
2e3cac39d8 BROKEN: Size mismatch 2005-11-15 04:47:42 +00:00
Anton Berezin
c12b76869a Update to 0.05.
PR:		88998
Submitted by:	maintainer
2005-11-14 16:47:23 +00:00
Mathieu Arnold
b71157a2ae Take a perl@ hat and add SHA256 checksums 2005-11-14 15:05:17 +00:00
Roman Bogorodskiy
721057dd60 Update to 0.9702. 2005-11-14 14:35:11 +00:00
Mathieu Arnold
b1a641bc45 Be hipe and add SHA256 2005-11-14 14:16:12 +00:00
Emanuel Haupt
b5b2e8b14e - Update to 0.4.8
- Update WWW
2005-11-14 13:46:55 +00:00
Lars Koeller
106310e7ff o) Drop maintainership cause I didn't use these ports since months anymore. 2005-11-13 17:13:15 +00:00
Pav Lucistnik
a4c7efe3e7 - Chase allegro update 2005-11-13 15:17:00 +00:00
Dirk Meyer
ec997a9574 - add SHA checksum 2005-11-13 09:26:50 +00:00
Tom McLaughlin
dbdbfba7c7 Add cowbell, an elegant music organizer intended to make keeping your
collection tidy both fun and easy.

In addition:
- Include bsd.mono.mk into port
- SHA256ify

PR:		84701
Submitted by:	Andreas Kohn <andreas@syndrom23.de>
Approved by:	ahze (mentor)
2005-11-13 02:43:07 +00:00
Sergey Matveychuk
98e938099e - Submitter of the last PR kindly agrees to take the port 2005-11-12 21:17:58 +00:00
Sergey Matveychuk
068e7c2b1b - Fix pkg-plist when WITH_XMMS defined
PR:		ports/88893
Submitted by:	Ion-Mihai "IOnut" Tetcu
2005-11-12 19:09:45 +00:00
Pav Lucistnik
884fd659a6 - Update MASTER_SITES, WWW
PR:		ports/87939
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	maintainer timeout (trevor; 19 days)
2005-11-12 11:58:01 +00:00
Brooks Davis
fe5bc0ecd2 add SHA256 2005-11-11 19:03:22 +00:00
Mario Sergio Fujikawa Ferreira
9a4b87b1c7 Add SHA256 checksum 2005-11-11 06:06:17 +00:00
Mark Linimon
34da9bdf57 With portmgr hat on, reset maintainership of knu's ports since he has
been inactive more than 6 months.  We hope to see him back sometime.
2005-11-11 01:18:01 +00:00
Renato Botelho
8aad0c1dff - Add SHA256 to all ports submitter maintain
PR:		ports/88791
Submitted by:	Frank Laszlo <laszlof@vonostingroup.com>
2005-11-10 18:41:27 +00:00
Pav Lucistnik
93732e1358 - Update to 3.0.4
PR:		ports/88557
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-11-10 10:04:49 +00:00
Tom McLaughlin
e36417a73f - Add fix for updated gtk# (patch-src_PlaylistWindow.cs: Muine mailing list)
- Correct pkg-plist for gacutil changes with Mono 1.1.9.x
- Include bsd.mono.mk.

Approved by:    ahze (mentor)
Project by:     BSD# <http://www.mono-project.com/Mono:FreeBSD>
2005-11-10 04:40:30 +00:00
Marcus Alves Grando
b362c4b3da Add SHA256
Remove WWW

PR:		88735
Submitted by:	maintainer
2005-11-09 16:01:55 +00:00
Michael Landin
cb3631153f o Update to -> 1.3.6
- Bugfixes
    - Updated translations
    - Changelog: http://amarok.kde.org/content/view/65/66/
o add sha256 checksum.
o Retire collectiondb patch, as I've committed it upstream.
2005-11-09 15:08:14 +00:00
Pav Lucistnik
dc33aa59f5 Move instant messaging related ports to newly created net-im category:
net/gaim -> net-im/gaim
  net/gaim-latex -> net-im/gaim-latex
  net/gaim-openq -> net-im/gaim-openq
  net/gaim-rss-reader -> net-im/gaim-rss-reader
  net/gicq -> net-im/gicq
  net/gnomeicu2 -> net-im/gnomeicu2
  net/gossip -> net-im/gossip
  net/ickle -> net-im/ickle
  net/jabber -> net-im/jabber
  net/jabber-aim -> net-im/jabber-aim
  net/jabber-conference -> net-im/jabber-conference
  net/jabber-jud -> net-im/jabber-jud
  net/jabber-msn -> net-im/jabber-msn
  net/jabber-users-agent -> net-im/jabber-users-agent
  net/jabber-yahoo -> net-im/jabber-yahoo
  net/jarl -> net-im/jarl
  net/kf -> net-im/kf
  net/libicq -> net-im/libicq
  net/libicq2000 -> net-im/libicq2000
  net/loudmouth -> net-im/loudmouth
  net/meanwhile -> net-im/meanwhile
  net/meanwhile-gaim -> net-im/meanwhile-gaim
  net/newsbot -> net-im/newsbot
  net/ocaml-jabbr -> net-im/ocaml-jabbr
  net/psi -> net-im/psi
  net/py-jabber -> net-im/py-jabber
  net/py-twistedWords -> net-im/py-twistedWords
  net/p5-Net-Jabber -> net-im/p5-Net-Jabber

Repocopied by:	marcus
2005-11-09 08:21:21 +00:00
Michael Johnson
3e4b179fa7 - Add SHA256
- Add SIZE to a few ports
2005-11-09 07:09:47 +00:00
Pav Lucistnik
abca369aa8 - Add SHA256 checksum
PR:		ports/88695
Submitted by:	Andrew Pantyukhin <sat@proxy.gubkin.ru> (maintainer)
2005-11-09 01:00:25 +00:00
Oliver Lehmann
8d1734f7d3 update to xfce 4.2.3.1
Changelog:	http://www.xfce.org/release_notes/4.2.3.1_changelog.html
2005-11-08 22:42:31 +00:00
Marcus Alves Grando
706c785fc3 Mark as DEPRECATED
PR:		88690
Submitted by:	jmelo@freebsdbrasil.com.br
Approved by:	maintainer timeout, 15 days in PR 87951
2005-11-08 21:23:42 +00:00
Marcus Alves Grando
04c99d906c Remove WWW
Add SHA256

PR:		87941
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	maintainer timeout, 15 days
2005-11-08 20:35:02 +00:00
Marcus Alves Grando
a24110f209 Remove WWW
Add SHA256

PR:		87953
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	maintainer timeout, 15 days
2005-11-08 20:31:07 +00:00
Marcus Alves Grando
fac75e6944 Remove WWW
Add SHA256

PR:		87952
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	maintainer timeout, 15 days
2005-11-08 20:28:04 +00:00
Hajimu UMEMOTO
e8d11ef752 add SHA256. 2005-11-08 17:12:15 +00:00
Hajimu UMEMOTO
744f040b9a it seems master site stopped distributing 1.x. so, make LATEST_LINK
pointing to gkrellmss2.
2005-11-08 17:09:47 +00:00
Hajimu UMEMOTO
ebcfca6089 add SHA256. 2005-11-08 16:24:12 +00:00
Tilman Keskinoz
463dadf671 * Add SHA256 checksums for maintainerless ports i added to the ports collection
* Remove my name from blop pkg-descr
* Grab back maintainership for netio
2005-11-08 12:56:15 +00:00
Tilman Keskinoz
4ec9c8318a Add SHA256 checksums for my ports 2005-11-08 12:26:38 +00:00
Pav Lucistnik
f8d06c1594 - Update to 0.9 2005-11-07 15:33:20 +00:00
Emanuel Haupt
b1b5d62a85 Chase sysutils/file update 2005-11-07 13:36:30 +00:00
Tom McLaughlin
af0d13fec3 Bump PORTREVISION to chase glib update that came with Gnome 2.12
- Initially I planned to make a large Mono commit right after Gnome 2.12
  was merged but the new Gnome has in part caused me to delay merging
  updates to Mono and friends.

Approved by:	mezz (co-mentor)
2005-11-06 07:36:17 +00:00
Michael Nottebrock
de94e0e160 Update to KDE 3.4.3 / KOffice 1.4.2 2005-11-05 11:19:58 +00:00
Kris Kennaway
b1cf59535c Remove expired ports 2005-11-05 09:07:44 +00:00
Joe Marcus Clarke
c5273993c4 Update to 0.9.1. 2005-11-05 05:29:26 +00:00
Joe Marcus Clarke
235c907ae5 Bump PORTREVISION to chase the glib20 shared library update. 2005-11-05 05:22:06 +00:00
Joe Marcus Clarke
e18151212d Presenting GNOME 2.12 for FreeBSD. The release is chock full of bug fixes
and new features.  Don't believe me?  Then see for yourself at
http://www.gnome.org/start/2.12/notes/en/.

DO NOT USE portupgrade by itself to upgrade to GNOME 2.12.  Instead, use
the gnome_upgrade.sh script from
http://www.marcuscom.com/downloads/gnome_upgrade212.sh.  This script will
circumvent some potential pitfalls users can see if they use portupgrade
by itself.

In keeping with tradition, GNOME 2.12 for FreeBSD comes with a special
splash screen.  The winner of this release's contest is
Dominique Goncalves <dominique.goncalves@gmail.com>.  His splash screen
was inspired by http://art.gnome.org/contests/2.12-splash/83.

The FreeBSD GNOME Team would lank to thank the following users for
their contributions to this release:

Matthew Luckie <mjl@luckie.org.nz>
ade
sajd on #freebsd-gnome
Caelian on #freebsd-gnome
mnag
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Mark Hobden <markhobden@gmail.com>
Sergey Akifyev <asa@agava.com>
Andreas Kohn

For more information on GNOME on FreeBSD, checkout
http://www.FreeBSD.org/gnome/.  The 2.12 documentation will be
posted shortly.
2005-11-05 04:53:48 +00:00
Edwin Groothuis
8c8981f56f Unbreak port by fixing pkg-plist 2005-11-05 02:50:44 +00:00
Adam Weinberger
b0efc95416 Update to 1.99.9. 2005-11-04 19:47:01 +00:00
Adam Weinberger
29ae0d7fd7 Update to 1.6.3.
Special thanks to edwin's brilliant distfile notification
script, which has got to be the awesomest script that maintainers
have ever been given.
2005-11-04 19:37:34 +00:00
Edwin Groothuis
ff7fb7b6b9 Port doesn't build on 4.x: Missing SHM_LOCK definition in sys/shm.h
Noticed by: YAPHR
2005-11-03 21:20:55 +00:00
Edwin Groothuis
bc57118969 Fix pkg-plist by silently failing if the spanish-voices directory
can't be removed.
2005-11-02 20:53:53 +00:00
Hye-Shik Chang
6c7c05a226 Update to 0.5.4
PR:		85981
Submitted by:	Peter Johnson <freebsd@bilogic.org>
2005-11-02 13:14:42 +00:00
Volker Stolz
083b482c97 Hoist ARCH-logic into port's Makefile 2005-11-02 10:10:08 +00:00
Edwin Groothuis
b479ca8fa8 update audio/gramofile to 1.6P+debian patches
update to 1.6P (with perl interface), add debian patches,
	MASTER_SITE moved

PR:		ports/88199
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de>
2005-11-02 05:25:44 +00:00
Tilman Keskinoz
7b96bf5c2f Update to 2.9.7
PR:		88341
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-11-01 17:40:05 +00:00
Sergey Matveychuk
c7bd743141 - Fix rcNG script
- PORTREVISION bump

Submitted by:	maintainer
2005-11-01 06:15:57 +00:00
Emanuel Haupt
08be64a99f - Fix master site
- Cleanup
2005-10-31 22:30:11 +00:00
Erwin Lansing
acde26f363 Let the IGNORE message make a bit more sense and change it from:
===>  p5-Some-Module-0.7 Port requires perl 5.6.x or later. Install
lang/perl5 then try again.

to:

===>  p5-Some-Module-0.7 requires perl 5.6.x or later. Install
lang/perl5 then try again.

Approved by:    silence on -ports
2005-10-31 18:24:21 +00:00
Alexey Dokuchaev
98767d31c1 s/one/you/ to make it sound better. 2005-10-31 13:34:52 +00:00
Alexey Dokuchaev
484526e3e3 Use standard and more readable way of CR/LF -> LF conversion. 2005-10-31 13:31:14 +00:00
Alexey Dokuchaev
f0239c4716 - Spell "MP3" canonically in COMMENT and pkg-descr
- Consistently use double space after sentence periods
2005-10-31 13:27:55 +00:00
Alexey Dokuchaev
0e9947e63e - Update pkg-descr to match the reality
- Kill EOL spaces
- Append trailing slash to the URL
2005-10-31 13:23:57 +00:00
Alexey Dokuchaev
112a5ab52d - Utilize OPTIONS
- Unmute ${INSTALL_DATA} statements
- Kill EOL space in distinfo
2005-10-31 12:58:23 +00:00
Sergey Matveychuk
6a2aecf3c6 - Add rcNG script
PR:		ports/88244
Submitted by:	maintainer
2005-10-30 20:35:43 +00:00
Emanuel Haupt
a2ff7294a5 - Update to 0.16
- Provide optional VORBIS, LAME, FAAD, JACK support
- Update pkg-descr

PR:		88186
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-10-30 19:15:53 +00:00
Marcus Alves Grando
9b2c168d6a Update to 2.9.6
PR:		88187
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-10-29 20:38:11 +00:00
Marcus Alves Grando
daf41fd58c Drop MAINTAINER
PR:		88198
Submitted by:	Rene Ladan <r.c.ladan@student.tue.nl> (maintainer)
2005-10-29 20:17:18 +00:00
Marcus Alves Grando
1cf3b6123a Respect LOCALBASE/X11BASE
PR:		88149
Notified by:	kris
Submitted by:	Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer)
2005-10-29 19:26:52 +00:00
Sam Lawrance
3968692348 Update mastersite and WWW link
PR:		ports/87927
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	Joris Vandalon <joris@vandalon.nl> (maintainer)
2005-10-29 13:54:29 +00:00
Kris Kennaway
a4c84b7b98 NOT_FOR_ARCHS=amd64 since the distinfo is incorrect 2005-10-28 22:47:45 +00:00
Kris Kennaway
81f8c9d1ee BROKEN on !i386: Does not build 2005-10-28 22:45:32 +00:00
Brooks Davis
2ec826ae42 Upgrade to slimserver 6.2.0. New features include:
- Built-in support WMA radio and files for all operating systems.
 - Wake-on-LAN function.
 - Seven day alarm.
 - Replay gain support.
2005-10-28 20:21:24 +00:00
Emanuel Haupt
09f6cf8bee Reset maintainer, does not respond to mails for 19 days. Since a few
days his MTA also remains unresponsive [1].

[1] Unable to deliver to destination domain
    Failed to deliver to domain oven.org after 73 tries.
    The last error was:
    CantConnectToHost

Approved by:	portmgr (linimon)
2005-10-28 17:05:15 +00:00
Koop Mast
7356489873 Chase id3tag shlib change. 2005-10-28 14:14:42 +00:00
Jean-Yves Lefort
f28051c4b0 Create the ${PREFIX}/libdata/pkgconfig directory. It is needed on
4.x/5.x -RELEASE systems built exclusively from ports.

Forgotten by:	jylefort
2005-10-28 08:45:25 +00:00
Jean-Yves Lefort
872d7f80ee Chase libid3tag update. 2005-10-28 07:59:53 +00:00
Jean-Yves Lefort
a38f9f2945 - Update to 0.15.1b [1]
- While here, fix library major version number

[1]:
PR:		ports/87405
Submitted by:	Rodrigo Graeff <delphus@gmail.com>
Approved by:	maintainer timeout (15 days)
2005-10-28 07:58:27 +00:00
Kris Kennaway
89113433b7 BROKEN: Incorrect pkg-plist 2005-10-28 06:29:50 +00:00
Marcus Alves Grando
a15bc17274 Update to 0.100.0
PR:		87239
Submitted by:	James mcNaughton <bitbucket63-it@yahoo.com>
2005-10-26 12:02:32 +00:00
Michael Landin
4e91fc74ed o Update to -> 1.3.5
Changelog: http://amarok.kde.org/content/view/64/66/
o Retire patches that have been comitted upstream
o Add patch to fix "auto scan" with PostgreSQL
2005-10-25 15:29:07 +00:00
Renato Botelho
27b57e74b7 - Provide new MASTER_SITE
- Remove DEPRECATED and EXPIRATION_DATE
- Pass maintainership to submitter
- Remove 3 lines pkg-plist

PR:		ports/87983
Submitted by:	martin hudec <corwin@aeternal.net>
Approved by:	Denis Shaposhnikov <dsh@vlink.ru> (ex-maintainer)
2005-10-25 14:44:44 +00:00
Alexey Dokuchaev
96f3d08efd - Fix RUN_DEPENDS
- Take maintainership
2005-10-25 04:08:38 +00:00
Marcus Alves Grando
ce0ef538aa Update WWW
PR:		87946
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:59:53 +00:00
Marcus Alves Grando
51ddddb78b Update WWW
PR:		87945
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:58:47 +00:00
Marcus Alves Grando
9c691020a3 Update WWW
PR:		87944
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:57:33 +00:00
Marcus Alves Grando
9a3777b62a Update WWW
PR:		87493
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:56:25 +00:00
Marcus Alves Grando
b52d76cfa1 Update WWW
PR:		87947
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:54:51 +00:00
Marcus Alves Grando
6185153530 Update WWW
PR:		87948
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:53:35 +00:00
Marcus Alves Grando
09b4cf8e18 Update WWW
PR:		87949
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:52:23 +00:00
Marcus Alves Grando
f9f375e02f Update WWW
PR:		87950
Notified by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 19:50:37 +00:00
Renato Botelho
4358e39689 - Mark as DEPRECATED and set EXPIRATION_DATE
PR:		ports/87937
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 18:22:27 +00:00
Jean-Yves Lefort
e159aa7be8 Remove WWW from pkg-descr, since the URL is no longer valid. 2005-10-24 16:12:09 +00:00
Jean-Yves Lefort
b0dc1871c9 Remove WWW from pkg-descr, since the URL is no longer valid.
PR:		ports/87928
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 16:11:17 +00:00
Renato Botelho
bb571f0915 - Mark it as DEPRECATED and set EXPIRATION_DATE
PR:		ports/87930
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
2005-10-24 15:42:38 +00:00
Renato Botelho
2b72123905 - Mark it as DEPRECATED and set EXPIRATION_DATE
PR:		ports/87919
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	port broken for a long period
2005-10-24 14:39:36 +00:00
Renato Botelho
8945dc5228 - Mark it as DEPRECATED and set EXPIRATION_DATE
PR:		ports/87924
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	port broken for a long period
2005-10-24 14:38:41 +00:00
Renato Botelho
6f80c9a161 - Mark as DEPRECATED and set EXPIRATION_DATE
PR:		ports/87818
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	port broken for a long time
2005-10-24 12:12:06 +00:00
Edwin Groothuis
1605dfc075 Restore mastersite, it's back! 2005-10-23 12:38:56 +00:00
Roman Bogorodskiy
da04a33ff0 Update to 1.0.4.1. 2005-10-23 04:05:18 +00:00
Jean-Yves Lefort
8db93fd470 - Respect ${LOCALBASE} and ${X11BASE} [1]
- Do not provide round() anymore, since it is part of FreeBSD since 5.3
- Reformat the Makefile (one less tab between variables and values)

Reported by:	pointyhat via kris [1]
2005-10-23 01:41:18 +00:00
Edwin Groothuis
d9d5b51d9f Maintainer has moved to mail@andr.ru. 2005-10-22 20:04:01 +00:00
Pav Lucistnik
a55f0a98ba - Update to 20051021 which features:
* Audigy 2 / Audigy 2 Value fixes, full support for SB0400 Audigy 2 Value
  * Workaround for bad AC97 'rec' volume emulation
  * 4.x build fix
  * rc.d/emuctrl.sh script that saves card parameters
  * Improved documentation

PR:		ports/87772
Submitted by:	Michael Seyfert <michaels@sdf.lonestar.org> (maintainer)

- Install kernel module into /boot/modules instead of /boot/kernel

PR:		ports/87541
Submitted by:	Bjorn Konig <bkoenig@cs.tu-berlin.de>
Approved by:	Michael Seyfert <michaels@sdf.lonestar.org> (maintainer)
2005-10-21 22:36:37 +00:00
Mark Linimon
62b84a88aa Reset bouncing maintainer address and website. 2005-10-21 22:28:19 +00:00
Roman Bogorodskiy
3e093b2d73 An attempt to fix build on 64 bit arches.
Submitted by:	Vladimir Kushnir <vkushnir@i.kiev.ua>
2005-10-21 14:49:00 +00:00
Roman Bogorodskiy
b428c03fad An attempt to fix build on 64 bit arches.
Suggested by:	Vladimir Kushnir <vkushnir@i.kiev.ua>,
		"Andrew P." <infofarmer@gmail.com>
2005-10-21 14:41:49 +00:00
Renato Botelho
447aca5102 - Make it fetchable again.
Reported by:	Distfiles survey
2005-10-21 14:15:54 +00:00
Emanuel Haupt
0e07cb1f44 Change WWW to the sourceforge project page rather than the message
board.
2005-10-21 10:15:43 +00:00
Sergey Matveychuk
79e06f5987 - Fix pkgconfig file place
- PORTREVISION bump

PR:		ports/87730
Pointed out:	Leonidas Tsampros <ltsampros@upnet.gr>
Submitted by:	maintainer
2005-10-20 17:20:07 +00:00
Sergey Matveychuk
860706c423 Laudio is a port of La, a free lossless audio codec written by
Michael Bevin. It is not opensource, but versions are available
for Windows and Linux. Currently (October 2005) it has the best
compression ratio available.

WWW: http://www.lossless-audio.com/

PR:		ports/87668
Submitted by:	Andrew Pantyukhin <infofarmer@gmail.com>
2005-10-20 16:33:12 +00:00
Sergey Matveychuk
779c50f397 - Fix maintainer email
PR:		ports/87673
Submitted by:	Gabor Kovesdan (maintainer)
2005-10-20 16:10:00 +00:00
Andreas Klemm
706fc45895 unbroke port and bumped portrevision:
installation path changed
from share/festival/lib/dicts to share/festival/dicts
2005-10-20 12:38:46 +00:00
Adam Weinberger
359bd34c77 Fix build with id3lib installed.
Submitted by:	Udo Mueller <udo@ebi.xs4all.nl>
2005-10-19 21:40:23 +00:00
Renato Botelho
67812da5ce - Update to 2.3.3
- Pass maintainership to submitter

PR:		ports/87667
Submitted by:	Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Approved by:	ex-maintainer
2005-10-19 17:51:12 +00:00
Marcus Alves Grando
35aca74cf4 Update to 0.94.0
Reset MAINTAINER

PR:		87415
Notified by:	Rodrigo Graeff <delphus@gmail.com>
Submitted by:	David Le Brun <david@dyn-ns.net> (maintainer)
2005-10-19 17:11:12 +00:00
Adam Weinberger
f8cc502146 Update to 1.6.1, and change the default dependencies for BATCH
to not depend on vorbis or libmodplug by default, mainly to
make the package as light as possible.
2005-10-19 16:40:35 +00:00
Volker Stolz
c0a88b673c Fix compilation on 4.x
Approved by: maintainer timeout (unpatched for >1 month)
2005-10-19 16:11:30 +00:00
Brooks Davis
f8a4271544 Override hardcoding of libexpat search paths in internal build of
XML-Parser to allow an alternate LOCALBASE to work.

Reported by:	dosirak (via kris)
2005-10-18 19:45:10 +00:00
Pav Lucistnik
3c7e71f7a0 - Unbreak, at least on i386/6.0
Approved by:	green (maintainer)
2005-10-18 19:28:35 +00:00
Volker Stolz
d1bad2c067 Unbreak japanese/timidity++-slang, sanitize rest a bit (hopefully) 2005-10-18 17:57:54 +00:00
Simon Barner
11373fc655 Make LOCALBASE-clean.
Reported by:	krismail
2005-10-18 15:11:04 +00:00
Renato Botelho
3f0bb45416 - Respect PREFIX/X11BASE
Submitted by:	maintainer
Reported by:	krismail
2005-10-18 09:24:01 +00:00
Michael Landin
5bef4db49c o Bump PORTREVISION (for the recent added patch)
Forgotten by:		mich
Noticed by:		barner
2005-10-17 17:33:05 +00:00
Emanuel Haupt
c9e90d5cf0 - Update to 3.0.3
PR:		87531
Submitted by:	Ports Fury
Approved by:	novel (mentor) (implicit)
2005-10-17 17:27:49 +00:00
Volker Stolz
de751b12be Remove expired port: master site disappeared (long ago) 2005-10-17 17:22:08 +00:00
Michael Landin
b3c8488eb7 o add patch to hande error in amarok wrapper, that would prevent libvisual
plugins from working.

Obtained From:		amarok SVN
2005-10-17 15:38:35 +00:00
Peter Pentchev
8b85259739 Fix the build on Perl 5.005.
While I'm here, fix two minor complaints from xsubpp and pod2man.

Reported by:	pointyhat via kris
2005-10-17 14:35:34 +00:00
Volker Stolz
22104cbac8 Chase MASTER_SITE, use OPTIONS while here
Noticed by: fenner's magical distfile survey
2005-10-17 12:45:26 +00:00
Volker Stolz
dfa730eab7 Remove dead port: no longer on sunsite, home page gone 2005-10-17 12:25:36 +00:00
Trevor Johnson
aa8e54406e Update to 1.95 beta (obsoletes PRs 49056, 51900 and 58653). 2005-10-17 06:17:44 +00:00
Trevor Johnson
8178c9e22d FreeBSD does not run on the pmax architecture. 2005-10-17 03:40:31 +00:00
Trevor Johnson
ea775153d1 Sort. 2005-10-17 02:15:00 +00:00
Emanuel Haupt
5d8982334f - Update to 0.8.3
PR:		87532
Submitted by:	Ports Fury
Approved by:	novel (mentor) (implicit)
2005-10-16 21:45:23 +00:00
Michael Johnson
1d698f21a5 - Make sure man pages get installed in PREFIX
Reported by:	pointyhat via kris
2005-10-16 21:22:23 +00:00
Tilman Keskinoz
f90883480e * Add a copy of the distfile to MASTER_SITE_LOCAL, as there seems to be
problems with the Mastersite
* portlint

Reported by:	pointyhat/ distfile survey
2005-10-16 19:54:32 +00:00