diff options
author | dillo <dillo> | 2003-12-16 00:11:48 +0000 |
---|---|---|
committer | dillo <dillo> | 2003-12-16 00:11:48 +0000 |
commit | 5b8f9cd37bcf70ae4d30bf6d15d3a92f9d284c42 (patch) | |
tree | b193e85aec14678e09444ddec0a617925d5fb73c /news/tin/Makefile | |
parent | e89d4701686a23f4ee946d75de7a13ad54f05a0c (diff) | |
download | pkgsrc-5b8f9cd37bcf70ae4d30bf6d15d3a92f9d284c42.tar.gz |
Update tin to 1.6.1
New / changed Features:
-----------------------
. Rebindable keys
. New pager
. Searched for strings are highlighted
. GPG support
. NLS support
. Charset conversion using iconv(3)
. Indicator for articles newer than n-days
. art_mark_read, art_mark_killed, art_mark_selected are now configurable
. Piping '|' now works on the thread menu
. configurable scrolling via scroll_lines
. configurable URL handler via url_handler
. '.' sorts the newsgroup list
. Lots of bug fixes
. xref filter rules are now matched against a the reformatted xref line
. some others
Retired Features
----------------
. INDEX_DAEMON is no longer supported
. -U indexing is no longer supported
. ~/.tin/headers file is no longer directly supported. Use:
. filter rules xref_num and xref_score have been removed
. some others
Diffstat (limited to 'news/tin/Makefile')
-rw-r--r-- | news/tin/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/news/tin/Makefile b/news/tin/Makefile index c23a5a1c949..9e585e3c34d 100644 --- a/news/tin/Makefile +++ b/news/tin/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.16 2003/07/17 22:52:10 grant Exp $ +# $NetBSD: Makefile,v 1.17 2003/12/16 00:11:48 dillo Exp $ # -DISTNAME= tin-1.4.6 +DISTNAME= tin-1.6.1 CATEGORIES= news MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/current/ \ ftp://ftp.cs.tu-berlin.de/pub/net/news/tin/current/ \ @@ -21,6 +21,7 @@ RESTRICTED= "Profit from use, sale, trade, or reproduction disallowed" GNU_CONFIGURE= yes USE_BUILDLINK2= yes +USE_PKGLOCALEDIR=yes .include "../../mk/bsd.prefs.mk" @@ -51,7 +52,6 @@ CONFIGURE_ARGS+= --with-inews-dir=${PREFIX}/inn/bin \ CONFIGURE_ARGS+= --enable-nntp-only .endif -MAKEFILE= makefile ALL_TARGET= build post-patch: @@ -63,4 +63,8 @@ post-configure: ${ECHO} '#define NNTP_SERVER_FILE "${PREFIX}/etc/nntp/server"' >>${WRKSRC}/include/autoconf.h ${ECHO} '#define SMTP_SERVER_FILE "${PREFIX}/etc/smtpserver"' >>${WRKSRC}/include/autoconf.h +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tin + ${INSTALL_DATA} ${WRKSRC}/doc/WHATSNEW ${PREFIX}/share/doc/tin + .include "../../mk/bsd.pkg.mk" |