pkgsrc/www/felinks/options.mk
nia c1cbed1e35 www: Add felinks.
ELinks is an advanced and well-established feature-rich text mode web
(HTTP/FTP/..) browser. ELinks can render both frames and tables, is highly
customizable and can be extended via scripts. It is very portable and runs
on a variety of platforms.

felinks is a fork of elinks.
2020-06-20 15:13:56 +00:00

19 lines
563 B
Makefile

# $NetBSD: options.mk,v 1.1 2020/06/20 15:13:56 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.felinks
PKG_OPTIONS_REQUIRED_GROUPS= tls
PKG_OPTIONS_GROUP.tls= gnutls openssl
PKG_SUGGESTED_OPTIONS= gnutls
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mgnutls)
. include "../../security/gnutls/buildlink3.mk"
. include "../../security/libgcrypt/buildlink3.mk"
CONFIGURE_ARGS+= --without-openssl
.endif
.if !empty(PKG_OPTIONS:Mopenssl)
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
.endif