1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Update to 1.83, with chat feature disabled by default.

Maintainer switch from ports@FreeBSD.org

PR:		21553
Submitted by:	new maintainer <jhp@cocoja.holywar.net>
This commit is contained in:
Ade Lovett 2000-09-26 14:53:16 +00:00
parent 85abfe1718
commit be2cada2b9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33145
6 changed files with 48 additions and 23 deletions

View File

@ -6,12 +6,12 @@
#
PORTNAME= tintin
PORTVERSION= 1.8.2
PORTVERSION= 1.8.3
CATEGORIES= net games
MASTER_SITES= http://mail.newclear.net/tintin/download/
DISTNAME= tintin++v1.82
DISTNAME= tintin++v1.83
MAINTAINER= ports@FreeBSD.org
MAINTAINER= jhp@cocoja.holywar.net
WRKSRC= ${WRKDIR}/tintin++/src
GNU_CONFIGURE= yes

View File

@ -1 +1 @@
MD5 (tintin++v1.82.tar.gz) = 8817be7ba82283f507953f17ef4d7743
MD5 (tintin++v1.83.tar.gz) = 468f690e82bf0a511771a861dc2918cd

View File

@ -17,22 +17,3 @@
char homepath[1025];
char prompt_line[BUFFER_SIZE];
*** chat.c.orig Sat Sep 2 10:34:02 2000
--- chat.c Sat Sep 2 10:33:32 2000
***************
*** 1458,1464 ****
if ((f = fopen("chat.conf", "r")) == NULL) {
printf("\n#ERROR: chat.conf not found!\n");
printf(" This file must be in your current directory.\n");
! printf(" Using defaults...\n");
fflush(stdout);
return;
}
--- 1458,1464 ----
if ((f = fopen("chat.conf", "r")) == NULL) {
printf("\n#ERROR: chat.conf not found!\n");
printf(" This file must be in your current directory.\n");
! printf(" You can find example in /usr/local/share/doc/tintin\n");
fflush(stdout);
return;
}

View File

@ -0,0 +1,22 @@
--- chat.c.orig Fri Sep 8 13:42:00 2000
+++ chat.c Tue Sep 23 12:46:11 2000
@@ -66,7 +66,6 @@
#include <stdio.h>
#include <unistd.h>
#include <memory.h>
-#include <malloc.h>
#include <errno.h>
#include <ctype.h>
#include <sys/socket.h>
@@ -1456,9 +1455,8 @@
if ((f = fopen("chat.conf", "r")) == NULL) {
- printf("\n#ERROR: chat.conf not found!\n");
- printf(" This file must be in your current directory.\n");
- printf(" Using defaults...\n");
+ printf("\n#CHAT: chat.conf file must be in your current directory to enable it.\n");
+ printf(" You can find example in /usr/local/share/doc/tintin, use with caution.\n");
fflush(stdout);
return;
}

View File

@ -0,0 +1,11 @@
--- scrsize.c.orig Tue Sep 23 12:10:26 2000
+++ scrsize.c Tue Sep 23 12:22:17 2000
@@ -14,7 +14,7 @@
#ifdef HAVE_SYS_TERMIO_H
#include <sys/termio.h>
-#else
+#elif !defined(HAVE_SYS_IOCTL_H)
#include <sgtty.h>
#endif

View File

@ -0,0 +1,11 @@
--- rl.c.orig Sun Aug 13 02:40:28 2000
+++ rl.c Tue Sep 26 13:38:02 2000
@@ -436,7 +436,7 @@
/* get a clean screen without the split crap; useful for ^Z, quitting, etc */
void cleanscreen(void)
{
- system("stty echo"); /* a hack, admittedly */
+ // system("stty echo"); /* a hack, admittedly */
if(!is_split)
return;