1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Use .tar.gz archive instead of (vanished) .tar.Z archive

- gets() -> fgets()

PR: 24821
Submitted by: Ports Fury
This commit is contained in:
Kevin Lo 2001-02-03 17:00:35 +00:00
parent d512958cbb
commit a6d16c4971
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37930
10 changed files with 93 additions and 86 deletions

View File

@ -7,16 +7,20 @@
PORTNAME= xmille
PORTVERSION= 2.0
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_XCONTRIB} \
ftp://gatekeeper.dec.com/pub/X11-contrib/
MASTER_SITES= ${MASTER_SITE_XCONTRIB}
MASTER_SITE_SUBDIR= games
DISTFILES= xmille.tar.Z
DISTNAME= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/Mille
USE_IMAKE= yes
NO_WRKSUBDIR= yes
MAN1= xmille.1
post-extract:
@find ${WRKSRC} -name '*.[ao]' -delete
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (xmille.tar.Z) = 02dec1275c13d1f5e14588062c431636
MD5 (xmille.tar.gz) = 31b018c3a02647c21b3369ade19dcd90

View File

@ -1,48 +0,0 @@
*** drawcard.c.orig Thu Sep 16 00:47:18 1993
--- drawcard.c Thu Sep 16 00:41:29 1993
***************
*** 183,194 ****
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, bits_p);
! XSetStipple(dpy, cheap_gc, bits);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, mask_p);
! XSetStipple(dpy, cheap_gc, mask);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
--- 183,194 ----
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, bits_p);
! XSetStipple(dpy, cheap_gc, mask);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, mask_p);
! XSetStipple(dpy, cheap_gc, bits);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
*** roll.c.orig Thu Apr 2 06:15:57 1992
--- roll.c Thu Sep 16 00:36:38 1993
***************
*** 7,13 ****
# define reg register
! # if (! defined ultrix && ! defined mips && ! defined vax)
# define MAXRAND 32767L
roll(ndie, nsides)
--- 7,13 ----
# define reg register
! # if (! defined ultrix && ! defined mips && ! defined vax && ! defined __386BSD__ && ! defined __FreeBSD__)
# define MAXRAND 32767L
roll(ndie, nsides)

View File

@ -1,19 +1,11 @@
*** Imakefile.orig Thu Apr 2 06:03:24 1992
--- Imakefile Fri Dec 30 21:14:47 1994
***************
*** 5,11 ****
/**/# Dana Chee
/**/#
#define IHaveSubdirs
! #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) DEFINES=$(DEFINES)'
HEADERS = ui.h
SRCS= comp.c end.c extern.c init.c mille.c misc.c move.c print.c \
--- 5,11 ----
/**/# Dana Chee
/**/#
#define IHaveSubdirs
! #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) $(DEFINES)'
HEADERS = ui.h
SRCS= comp.c end.c extern.c init.c mille.c misc.c move.c print.c \
--- Imakefile.orig Thu Apr 2 23:03:24 1992
+++ Imakefile Wed Jan 31 23:04:28 2001
@@ -5,7 +5,7 @@
/**/# Dana Chee
/**/#
#define IHaveSubdirs
-#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) DEFINES=$(DEFINES)'
+#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) $(DEFINES)'
HEADERS = ui.h
SRCS= comp.c end.c extern.c init.c mille.c misc.c move.c print.c \

View File

@ -1,14 +1,12 @@
*** save.c.orig Wed Apr 1 12:56:45 1992
--- save.c Fri Dec 30 21:17:28 1994
***************
*** 22,28 ****
--- 22,30 ----
* This routine saves the current game for use at a later date
*/
extern int errno;
+ #ifndef __FreeBSD__
extern char *sys_errlist[];
+ #endif
save() {
--- save.c.orig Thu Apr 2 05:56:45 1992
+++ save.c Wed Jan 31 23:04:29 2001
@@ -22,7 +22,9 @@
* This routine saves the current game for use at a later date
*/
extern int errno;
+#ifndef __FreeBSD__
extern char *sys_errlist[];
+#endif
save() {

View File

@ -0,0 +1,17 @@
--- drawcard.c.orig Thu Apr 2 05:55:06 1992
+++ drawcard.c Wed Jan 31 23:04:23 2001
@@ -183,12 +183,12 @@
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, bits_p);
- XSetStipple(dpy, cheap_gc, bits);
+ XSetStipple(dpy, cheap_gc, mask);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, mask_p);
- XSetStipple(dpy, cheap_gc, mask);
+ XSetStipple(dpy, cheap_gc, bits);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);

View File

@ -0,0 +1,11 @@
--- mille.c.orig Thu Mar 28 14:29:31 1996
+++ mille.c Thu Feb 1 00:23:54 2001
@@ -10,7 +10,7 @@
int rub();
-/*char _sobuf[BUFSIZ];*/
+char _sobuf[BUFSIZ];
main(ac, av)
reg int ac;

View File

@ -0,0 +1,11 @@
--- move.c.orig Thu Mar 28 15:13:44 1996
+++ move.c Thu Feb 1 00:33:58 2001
@@ -9,8 +9,6 @@
#endif
#define CTRL(c) (c - 'A' + 1)
-#define ANIMATE 1
-
/*extern FILE *outf;*/
char *Movenames[] = {

View File

@ -0,0 +1,11 @@
--- roll.c.orig Thu Apr 2 23:16:11 1992
+++ roll.c Wed Jan 31 23:04:23 2001
@@ -7,7 +7,7 @@
# define reg register
-# if (! defined ultrix && ! defined mips && ! defined vax)
+# if (! defined ultrix && ! defined mips && ! defined vax && ! defined __386BSD__ && ! defined __FreeBSD__)
# define MAXRAND 32767L
roll(ndie, nsides)

View File

@ -0,0 +1,11 @@
--- varpush.c.orig Wed Jul 8 11:33:36 1987
+++ varpush.c Thu Feb 1 00:27:53 2001
@@ -36,7 +36,7 @@
char buf[80];
over:
printf("Debug file:");
- gets(buf);
+ fgets(buf, sizeof(buf), stdin);
if ((outf = fopen(buf, "w")) == NULL) {
perror(buf);
goto over;