1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Move pkg/INSTALL to pkg/MESSAGE, add another patch from maintainer.

PR:		ports/5361
Reviewed by:	asami
Submitted by:	maintainer
This commit is contained in:
Vanilla I. Shu 1997-12-24 07:24:22 +00:00
parent dab61dff14
commit 742d411eed
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9162
3 changed files with 14 additions and 6 deletions

View File

@ -3,7 +3,7 @@
# Date created: Dec 4 1997
# Whom: frankch@waru.life.nthu.edu.tw
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1997/12/21 21:57:36 vanilla Exp $
#
DISTNAME= babel-1.6
@ -14,6 +14,6 @@ EXTRACT_SUFX= .tar.Z
MAINTAINER= frankch@waru.life.nthu.edu.tw
post-install:
@ ${CAT} ${PKGDIR}/INSTALL
@ ${CAT} ${PKGDIR}/MESSAGE
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- menus.c.orig Thu Dec 4 20:20:28 1997
+++ menus.c Thu Dec 4 20:21:46 1997
--- menus.c.orig Tue Jan 21 23:52:36 1997
+++ menus.c Mon Dec 22 14:29:37 1997
@@ -63,9 +63,9 @@
}
}
@ -26,12 +26,14 @@
if (strlen(OutputKeywords) < 1)
strcpy(OutputKeywords,"KEYWORDS GO HERE");
}
@@ -167,7 +167,7 @@
@@ -167,8 +167,8 @@
while (done == FALSE)
{
printf("Choice : ");
- gets(choice_string);
- for (i = 0; i < (int) strlen(choice_string); i++)
+ fgets(choice_string, 99, stdin);
for (i = 0; i < (int) strlen(choice_string); i++)
+ for (i = 0; i < ((int) strlen(choice_string) - 1) ; i++)
{
if (!isdigit(choice_string[i]))
choice = 0;

View File

@ -0,0 +1,6 @@
*********************************************************
* Please set the env variable BABEL_DIR to *
* /usr/local/share/babel before running babel. *
* For example, put the next line in your .cshrc file: *
* setenv BABEL_DIR /usr/loacl/share/babel *
*********************************************************