View | Details | Raw Unified | Return to bug 18696
Collapse All | Expand All

(-)muuz.272/Makefile (-7 / +6 lines)
Lines 1-21 Link Here
1
# Ports collection makefile for:  muuz
1
# Ports collection makefile for:  muuz
2
# Date created:			  21 March 2000
2
# Date created:			  21 May 2000
3
# Whom:				  kline@thought.org
3
# Whom:				  kline@thought.org
4
#
4
#
5
# $FreeBSD: ports/misc/muuz/Makefile,v 1.1.1.1 2000/04/30 20:24:05 steve Exp $
5
# $FreeBSD: ports/misc/muuz/Makefile,v 1.23 2000/02/13 03:23:26 obrien Exp $
6
#
6
#
7
7
8
PORTNAME=	muuz
8
PORTNAME=       muuz
9
PORTVERSION=	0.27.1
9
PORTVERSION=    0.27.2
10
CATEGORIES=	misc
10
CATEGORIES=     misc games
11
MASTER_SITES=	ftp://toxic.magnesium.net/pub/FreeBSD/muuz/
11
MASTER_SITES=	ftp://toxic.magnesium.net/pub/FreeBSD/muuz/
12
12
13
MAINTAINER=	kline@thought.org
13
MAINTAINER=	kline@thought.org
14
14
15
LIB_DEPENDS=	Xaw3d.6:${PORTSDIR}/x11-toolkits/Xaw3d
15
LIB_DEPENDS=	Xaw3d.6:${PORTSDIR}/x11-toolkits/Xaw3d
16
16
17
#USE_IMAKE=	yes        (... no, not yet)
17
USE_IMAKE=	yes
18
USE_X_PREFIX=	yes
19
MAN1=		muuz.1
18
MAN1=		muuz.1
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)muuz.272/files/md5 (-1 / +1 lines)
Line 1 Link Here
1
MD5 (muuz-0.27.1.tar.gz) = 0bd78bf700a50496e1346b4acea05fe3
1
MD5 (muuz-0.27.2.tar.gz) = 9ea52f17f310988e012fbd29e5304c7f
(-)muuz.272/files/md5~ (+1 lines)
Line 0 Link Here
1
MD5 (muuz-0.27.2.tar.gz) = 9356c6eae1c575bd09867b4f78a69b42
(-)muuz.272/patches/patch-aa (-11 lines)
Lines 1-11 Link Here
1
--- errMessage.h.orig	Sun Apr 30 13:24:41 2000
2
+++ errMessage.h	Sun Apr 30 13:25:15 2000
3
@@ -34,7 +34,7 @@
4
   void setProgname(char *argv0, char *def)
5
     { ___progn = (argv0 != NULL && (char *)*argv0 != NULL)?argv0:def;}
6
   // Return program name set by setProgname, or an empty string if not set.
7
-  char *getProgname(void) { return ___progn != NULL ? ___progn : ""; }
8
+  char *getProgname(void) { return ___progn != NULL ? ___progn : (char *)""; }
9
 
10
   void msgExit(ecategory_t category);
11
   void msg_printf(const char *fmt, ...);
(-)muuz.272/patches/patch-ab (-20 lines)
Lines 1-20 Link Here
1
--- muuzmenu.c.orig	Sun Apr 30 13:26:12 2000
2
+++ muuzmenu.c	Sun Apr 30 13:26:37 2000
3
@@ -162,14 +162,14 @@
4
   
5
   entry = XtCreateManagedWidget("New File", smeBSBObjectClass, menu1, NULL, 0);
6
   
7
-  XtAddCallback(entry, XtNcallback, print_string, "one");
8
+  XtAddCallback(entry, XtNcallback, print_string, (char *)"one");
9
   
10
   entry = XtCreateManagedWidget("Open File", smeBSBObjectClass, menu1, NULL, 0);
11
   
12
-  XtAddCallback(entry, XtNcallback, print_string, "two");
13
+  XtAddCallback(entry, XtNcallback, print_string, (char *)"two");
14
   
15
   entry = XtCreateManagedWidget("View File", smeBSBObjectClass, menu1, NULL, 0);
16
-  XtAddCallback(entry, XtNcallback, print_string, "ViewFile"); 
17
+  XtAddCallback(entry, XtNcallback, print_string, (char *)"ViewFile"); 
18
   
19
   entry = XtCreateManagedWidget("Iconify", smeBSBObjectClass, menu1, NULL, 0);
20
   XtAddCallback(entry, XtNcallback, iconifyCB, NULL);

Return to bug 18696