summaryrefslogtreecommitdiff
path: root/news/tin/options.mk
diff options
context:
space:
mode:
authorwiz <wiz>2006-01-01 16:10:29 +0000
committerwiz <wiz>2006-01-01 16:10:29 +0000
commit9f98a1a10be939733fcbbf19751347b40b311126 (patch)
tree0c6d328f498bbffccfa922ae3ba9364e6205bb59 /news/tin/options.mk
parent49898475822ee725c6048da5db87945a62b369ef (diff)
downloadpkgsrc-9f98a1a10be939733fcbbf19751347b40b311126.tar.gz
Update to 1.8.0.
Convert to options framework. Prefer package version to internal version of pcre. Add curses and inet6 options. New features and changes since tin-1.6.0 Changes ------- . interactive mailer can now be fed with headers. The old use_mailreader_i config variable is obsolete and superseded by the new interactive_mailer variable that can have three values: 0 no interactive mailreader (old use_mailreader_i=OFF) 1 interactive mailreader with headers 2 interactive mailreader without headers (old use_mailreader_i=ON) New features ------------ . You can now specify a mailbox folder to save your sent mails (fcc=) so you possibly don't need auto_cc or auto_bcc anymore. See tin(5). . x_headers can take a command which generates the header(s). See tin(5). . mime_forward (message/rfc822) attributes option . single line scrolling in all levels . minimalistic BiDi support (render_bidi) . minimalistic IDNA decoding support . display non-printable characters as octals in raw-mode . user defined date_format . support non-ascii key-bindings . 'percentage match' threading Retired Features ---------------- . AmigaOS support
Diffstat (limited to 'news/tin/options.mk')
-rw-r--r--news/tin/options.mk36
1 files changed, 36 insertions, 0 deletions
diff --git a/news/tin/options.mk b/news/tin/options.mk
new file mode 100644
index 00000000000..ae745f6f969
--- /dev/null
+++ b/news/tin/options.mk
@@ -0,0 +1,36 @@
+# $NetBSD: options.mk,v 1.1 2006/01/01 16:10:29 wiz Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.tin
+PKG_SUPPORTED_OPTIONS= curses inet6 tin-use-inn-spool
+# untested
+#PKG_SUPPORTED_OPTIONS+= icu socks
+PKG_OPTIONS_LEGACY_VARS= TIN_USE_INN_SPOOL:tin-use-inn-spool
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mcurses)
+CONFIGURE_ARGS+= --with-screen=curses
+.endif
+
+.if !empty(PKG_OPTIONS:Micu)
+.include "../../textproc/icu/buildlink3.mk"
+.endif
+
+.if !empty(PKG_OPTIONS:Minet6)
+CONFIGURE_ARGS+= --enable-ipv6
+.endif
+
+.if !empty(PKG_OPTIONS:Mtin-use-inn-spool)
+INN_DATA_DIR?= /var/news
+CONFIGURE_ARGS+= --with-inews-dir=${PREFIX}/inn/bin \
+ --with-libdir=${INN_DATA_DIR}/db \
+ --with-spooldir=${INN_DATA_DIR}/spool/articles \
+ --with-nov-dir=${INN_DATA_DIR}/spool/overview
+.else
+CONFIGURE_ARGS+= --enable-nntp-only
+.endif
+
+.if !empty(PKG_OPTIONS:Msocks)
+.include "../../net/socks5/buildlink3.mk"
+CONFIGURE_ARGS+= --with-socks5=${BUILDLINK_PREFIX.socks5}
+.endif