summaryrefslogtreecommitdiff
path: root/news/suck/Makefile
diff options
context:
space:
mode:
authorwiz <wiz>2003-02-21 13:46:44 +0000
committerwiz <wiz>2003-02-21 13:46:44 +0000
commit0b6629248ef0fef957b5934ab50a17d3affd90ef (patch)
tree2d71d19f35a012ae763b788aa313478f3c9df7f1 /news/suck/Makefile
parentd57a2a1f65fd161c718fbb584815c49c7562c85d (diff)
downloadpkgsrc-0b6629248ef0fef957b5934ab50a17d3affd90ef.tar.gz
Update to 4.3.1.
Extract of changes: -Q option to specify NNTP authentication via environment variables Changes to allow it to use SSL. -i option, to ignore the readonly opening response and try to post anyway, since inn-2.3, when using authinfo, still sends 201 code meaning readonly. do_one_group() - added code for resetcounter option. If remote end resets its article numbers the normal suck response is to ignore the group and reset the lastread counter to match the current high counter. This option tells suck to reset its lastread counter to the low counter, effectively causing suck to get all articles for the group, and use the historydb to check for dupes. Added low_read option. This option is used in concert with the maxread option of the sucknewsrc. Normally when there is a maxread in the sucknewsrc, suck will download the newest articles. This option tells suck to download instead the oldest articles. do_articles() - added code for show_group option. This option will add the name of the current group to the BPS display as you download the articles. do_nodownload() - added, this routine allows you to specifiy Message-IDs to never download. See the SUCKNODOWNLOAD section in the man page. Bugfixes and code cleanups.
Diffstat (limited to 'news/suck/Makefile')
-rw-r--r--news/suck/Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/news/suck/Makefile b/news/suck/Makefile
index 88b9d8a6f41..2d64801e64a 100644
--- a/news/suck/Makefile
+++ b/news/suck/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2001/02/25 04:18:10 hubertf Exp $
+# $NetBSD: Makefile,v 1.13 2003/02/21 13:46:44 wiz Exp $
#
-DISTNAME= suck-4.2.2
+DISTNAME= suck-4.3.1
CATEGORIES= news
MASTER_SITES= http://home.att.net/~bobyetman/ \
${MASTER_SITE_SUNSITE:=system/news/transport/} \
@@ -12,15 +12,16 @@ HOMEPAGE= http://home.att.net/~bobyetman/
COMMENT= Feed a local news server without a dedicated newsfeed
GNU_CONFIGURE= yes
+USE_BUILDLINK2= yes
.include "../../mk/bsd.prefs.mk"
# Include SOCKS firewall support
.if defined(USE_SOCKS) && (${USE_SOCKS} == 4 || ${USE_SOCKS} == 5)
.if ${USE_SOCKS} == 4
-DEPENDS+= socks4-2.2:../../net/socks4
+.include "../../net/socks4/buildlink2.mk"
.else
-DEPENDS+= socks5-1.0.2:../../net/socks5
+.include "../../net/socks5/buildlink2.mk"
.endif
.endif
@@ -34,4 +35,6 @@ post-install:
${CP} ${WRKSRC}/sample/* ${LOCALBASE}/share/examples/suck
${CHMOD} 644 ${LOCALBASE}/share/examples/suck/*
+#.include "../../databases/gdbm/buildlink2.mk"
+.include "../../security/openssl/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"