pkgsrc/news/flnews/options.mk
micha 488f19fe6a news/flnews: Update to 0.18
- Searching for Unicode string in current article is now supported (case
  insensitive variant based on Unicode case folding algorithm)
- Unicode database updated to version 13.0.0 (CaseFolding.txt added)
- The new 'force_unicode' entry in configfile set to a nonzero value sends
  all outgoing articles in Unicode, if they contain non-ASCII characters
- Dark background color is now usable
- MIME conformance reached (as defined in RFC 2049 Section 2)
- If selected text is present, quote only selected text for followup
- XDG desktop entry and icon theme added (option CFG_XDG_DISABLE)
- Configuration window in GUI now allows to disable the "User-Agent" header
  field for outgoing articles
- It is now possible to enable AUTHINFO USER/PASS without encrypted connection
  (option CFG_NNTP_AUTH_UNENCRYPTED)
  This allows to use stunnel instead of the internal TLS module
- TLS module no longer calls deprecated functions HMAC*(), RSA_size() and
  SSL_get_peer_certificate() for OpenSSL API 3.0.0
2020-11-09 12:02:25 +00:00

54 lines
1.6 KiB
Makefile

# $NetBSD: options.mk,v 1.4 2020/11/09 12:02:25 micha Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.flnews
PKG_SUPPORTED_OPTIONS= inet6 nls xdbe xdg-utils
PKG_SUGGESTED_OPTIONS= inet6 nls xdbe xdg-utils
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
# POSIX.1c-1996 Threads (THR) extension is required
PTHREAD_OPTS+= require
# inet6: Optional support for Internet Protocol Version 6 (IPv6)
# Requires an OS with POSIX.1-2001 API and IP6 option
.if !empty(PKG_OPTIONS:Minet6)
FLNEWS_OPT_DISABLE_IP6= 0
.else
FLNEWS_OPT_DISABLE_IP6= 1
.endif
# nls: Optional support for National Language Support (NLS)
# Requires an OS with X/Open XSI extension API (SUSv2) and the gencat utility
# Note: Only locales with UTF-8, ISO-8859-1 or US-ASCII codeset are supported!
PLIST_VARS+= nls
.if !empty(PKG_OPTIONS:Mnls)
PLIST.nls= yes
FLNEWS_OPT_DISABLE_NLS= 0
.else
FLNEWS_OPT_DISABLE_NLS= 1
.endif
# xdbe: Optional support for X11 Double Buffer Extension (XDBE)
# This option should be disabled for slow machines
.if !empty(PKG_OPTIONS:Mxdbe)
FLNEWS_OPT_DISABLE_XDBE= 0
.else
FLNEWS_OPT_DISABLE_XDBE= 1
.endif
# xdg: Optional support for XDG (Cross-Desktop Group, now freedesktop.org)
# - Install desktop file
# - Install icon-theme
# - xdg-utils (Portland project) dependency
# Used for WWW browser and e-mail redirection
PLIST_VARS+= xdg
.if !empty(PKG_OPTIONS:Mxdg-utils)
PLIST.xdg= yes
FLNEWS_OPT_DISABLE_XDG= 0
DEPENDS+= xdg-utils>=1.1:../../misc/xdg-utils
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.else
FLNEWS_OPT_DISABLE_XDG= 1
.endif