From 48f1d8c469aeb67c4c7838bd2bdf17f28eacbc79 Mon Sep 17 00:00:00 2001 From: Rene Ladan Date: Mon, 18 Apr 2011 22:25:41 +0000 Subject: Remove most expired ports: 2011-04-17 cad/tclspice: has been broken for more than a year 2011-04-17 comms/hcfmdm: does not compile on 7.X or higher 2011-04-17 databases/mysqlcc: has been broken for almost a year 2011-04-17 devel/ruby-rjudy: does not compile on FreeBSD 7.x or newer 2011-04-17 devel/xfc: does not compile on FreeBSD 7.x or newer 2011-04-17 devel/lamson: has been broken for a half year 2011-04-17 devel/cocktail: does not build on FreeBSD 7.x or newer 2011-04-17 devel/djgpp-gcc: has been broken for half a year 2011-04-17 devel/gauche-sdl: has been broken for a year 2011-04-17 devel/gdb53-act: does not compile on FreeBSD 7.x and up 2011-04-17 editors/zed: does not compile on FreeBSD 7.x or newer 2011-04-17 games/aqbubble: does not compile on FreeBSD 7.x or newer 2011-04-17 graphics/libvisual-plugins: has been broken for 3 years 2011-04-17 japanese/roundcube: has been broken for almost a year 2011-04-17 japanese/tkstep80: does not compile on FreeBSD 7.x or newer 2011-04-17 lang/u++: has been broken for over a half year 2011-04-17 lang/pugs: has been broken for over a year 2011-04-17 lang/mozart: does not compile on FreeBSD 7.x or newer 2011-04-17 math/linalg: does not build on FreeBSD 7.x or newer 2011-04-17 math/R-cran-igraph: has been broken for over a half year 2011-04-17 misc/ftree: has been broken for over a half year 2011-04-17 multimedia/katchtv: has been broken for a half year 2011-04-17 multimedia/libomxil-bellagio: has been broken for almost a year 2011-04-17 multimedia/banshee-mirage: has been broken for over a half year 2011-04-17 net-p2p/trackerbt: has been broken for a half year 2011-04-17 net/cap: does not compile on FreeBSD 7.x or newer 2011-04-17 net/ggsd: does not compile on FreeBSD 7.x or newer 2011-04-17 net/b2bua: does not compile on FreeBSD 7.x or newer 2011-04-17 net/penguintv: has been broken for a half year 2011-04-17 news/openftd: has been broken for almost a year 2011-04-17 palm/romeo: does not compile on FreeBSD 7.x or newer 2011-04-17 science/pcp: does not compile on FreeBSD 7.x or newer 2011-04-17 science/elmer-fem: has been broken for over a year 2011-04-17 security/newpki-lib: does not compile on FreeBSD 7.x or newer 2011-04-17 security/newpki-server: does not compile on FreeBSD 7.x or newer 2011-04-17 security/xmlsec: does not compile on FreeBSD 7.x or newer 2011-04-17 security/f-protd: has been broken for over a year 2011-04-17 sysutils/xwlans: does not compile on FreeBSD 7.x or newer 2011-04-17 www/bk_edit: does not compile on FreeBSD 7.x and newer 2011-04-17 www/bricolage: has been broken for a half year 2011-04-17 x11-toolkits/gauche-gtk: has been broken for a year 2011-04-17 x11-toolkits/gambas2-gb-qt: has been broken for over a year 2011-04-17 x11-toolkits/php-gtk2: has been broken for over a half year 2011-04-17 x11-toolkits/p5-Tcl-Tk: has been broken for 2 year 2011-04-17 x11/metisse: has been broken for over a half year --- devel/cocktail/files/patch-reuse-m2c-rSystem.c | 96 -------------------------- 1 file changed, 96 deletions(-) delete mode 100644 devel/cocktail/files/patch-reuse-m2c-rSystem.c (limited to 'devel/cocktail/files/patch-reuse-m2c-rSystem.c') diff --git a/devel/cocktail/files/patch-reuse-m2c-rSystem.c b/devel/cocktail/files/patch-reuse-m2c-rSystem.c deleted file mode 100644 index 28ca143bf1dc..000000000000 --- a/devel/cocktail/files/patch-reuse-m2c-rSystem.c +++ /dev/null @@ -1,96 +0,0 @@ ---- /usr/ports/devel/cocktail/work/cocktail-9309//./reuse/m2c/rSystem.c Tue Feb 15 14:26:46 1994 -+++ ./reuse/m2c/rSystem.c Thu Aug 5 18:49:33 2004 -@@ -10,10 +10,17 @@ - /* compilation with the option -DUNIX uses UNIX system calls for IO (efficient), - otherwise the C library routines are used for IO (portable). */ - -+# include -+# include -+# include -+# include -+ - # ifdef __STDC__ - # define ARGS(parameters) parameters -+# define NOARGS void - # else - # define ARGS(parameters) () -+# define NOARGS - # endif - - # ifndef bool -@@ -22,9 +29,9 @@ - # define tFile int - - # ifdef m68000 --# define hz 50 -+# define HZ 50 - # else --# define hz 60 -+# define HZ 60 - # endif - - /* binary IO */ -@@ -65,10 +72,10 @@ - /* memory space of size 'ByteCount' bytes. */ - /* Returns NIL if space is exhausted. */ - --extern long rTime (); -+extern long rTime (NOARGS); - /* Returns consumed cpu-time in milliseconds. */ - --extern int GetArgCount (); -+extern int GetArgCount (NOARGS); - /* Returns number of arguments. */ - - extern void GetArgument ARGS((int ArgNum, char * Argument)); -@@ -79,7 +86,7 @@ - /* Dummy procedure that passes the values */ - /* 'argc' and 'argv' from Modula-2 to C. */ - --extern int rErrNo (); -+extern int rErrNo (NOARGS); - /* Returns the current system error code. */ - - extern int rSystem ARGS((char * String)); -@@ -91,7 +98,7 @@ - /* Terminates program execution and passes the */ - /* value 'Status' to the operating system. */ - --extern void BEGIN_System (); -+extern void BEGIN_rSystem (NOARGS); - /* Dummy procedure with empty body. */ - - -@@ -216,9 +223,10 @@ - - /* calls other than IO */ - --/* # include */ -- --char * rAlloc (ByteCount) long ByteCount; { return (char *) malloc ((unsigned) ByteCount); } -+char * rAlloc (ByteCount) long ByteCount; -+{ -+ return (char *) calloc (1L, (unsigned) ByteCount); -+} - - # include - -@@ -229,7 +237,7 @@ - # else - struct tms buffer; - (void) times (& buffer); -- return (buffer.tms_utime + buffer.tms_stime) * 1000 / hz; -+ return (buffer.tms_utime + buffer.tms_stime) * 1000 / HZ; - # endif - } - -@@ -264,8 +272,6 @@ - - int rSystem (String) char * String; { return system (String); } - --extern void exit (); -- - void rExit (Status) int Status; { exit (Status); } - --void BEGIN_rSystem () {} -+void BEGIN_rSystem (NOARGS) {} -- cgit v1.2.3