diff options
author | ache <ache@FreeBSD.org> | 1997-11-04 08:36:56 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-11-04 08:36:56 +0000 |
commit | afa09b2622103c1ba22752b5bd0dc22efb5ca35d (patch) | |
tree | 86d2b5307d5282dc761aad15eca24747a4ec211a /news | |
parent | 52e2976aab1cc207b400c343d8ad638cb8f57930 (diff) | |
download | FreeBSD-ports-afa09b2622103c1ba22752b5bd0dc22efb5ca35d.zip FreeBSD-ports-afa09b2622103c1ba22752b5bd0dc22efb5ca35d.tar.gz |
Upgrade to 971102
Diffstat (limited to 'news')
-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 fec1e1a..5923411 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 58333eb..d97ede6 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 0000000..676f512 --- /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 + } + |