* drop myself as maintainer
* bumps PKGNAME
* fixes data types to correct some compile time warnings

Index: Makefile
===================================================================
RCS file: /cvs/ports/x11/fvwm95/Makefile,v
retrieving revision 1.13
diff -u -p -r1.13 Makefile
--- Makefile    15 Sep 2007 20:04:20 -0000      1.13
+++ Makefile    1 Jul 2008 15:25:02 -0000
@@ -3,7 +3,7 @@
 COMMENT=       win95-like window manager based on fvwm 2.x
 
 DISTNAME=      fvwm95-2.0.43a-Autoconf
-PKGNAME=       fvwm95-2.0.43ap1
+PKGNAME=       fvwm95-2.0.43ap2
 CATEGORIES=     x11
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=fvwm95/} \
                ftp://ftp.plig.org/pub/fvwm95/ \
@@ -13,8 +13,6 @@ EXTRACT_SUFX= .tgz
 HOMEPAGE=      http://fvwm95.sourceforge.net/
 
 LIB_DEPENDS=   rplay::audio/rplay
-
-MAINTAINER=    Dan Harnett <[EMAIL PROTECTED]>
 
 PERMIT_PACKAGE_CDROM=  no license
 PERMIT_PACKAGE_FTP=    no license
Index: patches/patch-modules_FvwmConsole_FvwmConsole_c
===================================================================
RCS file: patches/patch-modules_FvwmConsole_FvwmConsole_c
diff -N patches/patch-modules_FvwmConsole_FvwmConsole_c
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-modules_FvwmConsole_FvwmConsole_c     1 Jul 2008 15:25:02 
-0000
@@ -0,0 +1,30 @@
+$OpenBSD$
+--- modules/FvwmConsole/FvwmConsole.c.orig     Tue Dec 10 11:41:41 1996
++++ modules/FvwmConsole/FvwmConsole.c  Tue Jul  1 11:05:52 2008
+@@ -123,7 +123,7 @@ void CloseSocket() {
+ /*********************************************************/
+ void server (int *fd) {
+   struct sockaddr_un sas, csas;
+-  int  len, clen;     /* length of sockaddr */
++  socklen_t  len, clen;   /* length of sockaddr */
+   char buf[BUFSIZE];      /*  command line buffer */
+ 
+   /* make a socket  */
+@@ -141,7 +141,7 @@ void server (int *fd) {
+   unlink( S_NAME ); 
+   len = sizeof( sas.sun_family) + strlen( sas.sun_path );
+ 
+-  if( bind(s, &sas,len) < 0 ) {
++  if( bind(s, (struct sockaddr *)&sas, len) < 0 ) {
+       ErrMsg( "bind" );
+       exit(1);
+   }
+@@ -155,7 +155,7 @@ void server (int *fd) {
+ 
+   /* accept connections */
+   clen = sizeof(csas);
+-  if(( ns = accept(s, &csas, &clen)) < 0 ) {
++  if(( ns = accept(s, (struct sockaddr *)&csas, &clen)) < 0 ) {
+       ErrMsg( "accept");
+       exit(1);
+   }
Index: patches/patch-modules_FvwmForm_FvwmForm_c
===================================================================
RCS file: patches/patch-modules_FvwmForm_FvwmForm_c
diff -N patches/patch-modules_FvwmForm_FvwmForm_c
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-modules_FvwmForm_FvwmForm_c   1 Jul 2008 15:25:02 -0000
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- modules/FvwmForm/FvwmForm.c.orig   Tue Dec 10 11:41:43 1996
++++ modules/FvwmForm/FvwmForm.c        Tue Jul  1 11:14:16 2008
+@@ -180,6 +180,8 @@ int rel_cursor;
+ static char *buf;
+ static int N = 8;
+ 
++XFontStruct *GetFontOrFixed(Display *, char *);
++
+ /* copy a string until '\0', or up to n chars, and delete trailing spaces */
+ char *CopyString (char *cp, int n)
+ {

Reply via email to