diff options
Diffstat (limited to 'news/tin')
-rw-r--r-- | news/tin/Makefile | 7 | ||||
-rw-r--r-- | news/tin/distinfo | 2 | ||||
-rw-r--r-- | news/tin/files/patch-aa | 29 |
3 files changed, 33 insertions, 5 deletions
diff --git a/news/tin/Makefile b/news/tin/Makefile index fec1e1a4d5f9..5923411631b4 100644 --- a/news/tin/Makefile +++ b/news/tin/Makefile @@ -4,11 +4,10 @@ # Date created: 25 July 1996 # Whom: obrien@cs.ucdavis.edu # -# $Id: Makefile,v 1.44 1997/09/29 21:33:56 ache Exp $ +# $Id: Makefile,v 1.45 1997/10/11 23:08:09 ache Exp $ # -DISTNAME= tin1.3-unoff-BETA-970930 -PKGNAME= tin-1.3.970930 +DISTNAME= tinpre-1.4-971102 CATEGORIES= news MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/tin/ \ ftp://ftp.akk.uni-karlsruhe.de/pub/tin/ \ @@ -17,7 +16,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= ache@FreeBSD.org -WRKSRC= ${WRKDIR}/${DISTNAME:S/1.3-unoff-BETA//} +WRKSRC= ${WRKDIR}/${DISTNAME:S/pre-1.4//} GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-nntp-default-server=news \ --with-spooldir=/var/news \ diff --git a/news/tin/distinfo b/news/tin/distinfo index 58333ebfac19..d97ede61d5db 100644 --- a/news/tin/distinfo +++ b/news/tin/distinfo @@ -1 +1 @@ -MD5 (tin1.3-unoff-BETA-970930.tgz) = 43fb8ed28fe17092fa05bbb259f37778 +MD5 (tinpre-1.4-971102.tgz) = 20a5df00a99db6483ca4a8740700473b diff --git a/news/tin/files/patch-aa b/news/tin/files/patch-aa new file mode 100644 index 000000000000..676f512570af --- /dev/null +++ b/news/tin/files/patch-aa @@ -0,0 +1,29 @@ +*** src/screen.c.bak Thu Oct 30 06:12:34 1997 +--- src/screen.c Tue Nov 4 10:39:41 1997 +*************** +*** 307,316 **** + ring_bell (void) + { + #if USE_CURSES +! beep(); +! #else + my_fputc ('\007', stdout); + my_flush(); + #endif + } + +--- 307,320 ---- + ring_bell (void) + { + #if USE_CURSES +! if (!cmd_line) +! beep(); +! else { +! #endif + my_fputc ('\007', stdout); + my_flush(); ++ #if USE_CURSES ++ } + #endif + } + |