From owner-svn-ports-all@freebsd.org Wed Jul 3 19:45:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9F6815DF06B; Wed, 3 Jul 2019 19:45:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E0CF8D8D6; Wed, 3 Jul 2019 19:45:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3538518724; Wed, 3 Jul 2019 19:45:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x63Jj10D074266; Wed, 3 Jul 2019 19:45:01 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x63Jj1eX074265; Wed, 3 Jul 2019 19:45:01 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201907031945.x63Jj1eX074265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 3 Jul 2019 19:45:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505784 - head/mail/nmh X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/mail/nmh X-SVN-Commit-Revision: 505784 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5E0CF8D8D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Jul 2019 19:45:02 -0000 Author: cy Date: Wed Jul 3 19:45:00 2019 New Revision: 505784 URL: https://svnweb.freebsd.org/changeset/ports/505784 Log: Add text-based browser dependency options. Text-based browsers are used to render HTML. The dependencies are build and run dependencies, build dependencies because nmh auto-configures itself at build time for text based browsers it finds. The nmh upstream developer, Ken Hornstein , prefers w3m but any text-based browser will do. The browser option is not default in order to satisfy minimalist install rerequirements. Reported by: Ken Hornstein (upstream) MFH: 2019Q3 Modified: head/mail/nmh/Makefile (contents, props changed) Modified: head/mail/nmh/Makefile ============================================================================== --- head/mail/nmh/Makefile Wed Jul 3 19:39:59 2019 (r505783) +++ head/mail/nmh/Makefile Wed Jul 3 19:45:00 2019 (r505784) @@ -21,9 +21,11 @@ CONFIGURE_ARGS= --libdir=${PREFIX}/libexec/nmh \ LIB_DEPENDS= libcurl.so:ftp/curl OPTIONS_DEFINE= DOCS HASH_BKP SASL2 TLS REPLYFILTER +OPTIONS_RADIO= MIME_HTML OPTIONS_SINGLE= MTS LOCKING OPTIONS_SINGLE_MTS= SMTP SENDMAIL_SMTP SENDMAIL_PIPE OPTIONS_SINGLE_LOCKING= DOT FCNTL FLOCK LOCKF +OPTIONS_RADIO_MIME_HTML= LINKS ELINKS LYNX W3M SASL2_DESC= SASL2 support SASL2_CONFIGURE_WITH= cyrus-sasl @@ -55,6 +57,25 @@ FLOCK_DESC= flock() file locking FLOCK_CONFIGURE_ON= --with-locking=flock LOCKF_DESC= lockf file locking LOCKF_CONFIGURE_ON= --with-locking=lockf + +# The reason for BUILD_DEPENDS is nmh detects and configures itself for +# whichever text-based browser is installed. + +ELINKS_DESC= Install dependencies for www/elinks +ELINKS_BUILD_DEPENDS= links>=0:www/elinks +ELINKS_RUN_DEPENDS= links>=0:www/elinks + +LINKS_DESC= Install dependencies for www/links +LINKS_BUILD_DEPENDS= links>=0:www/links +LINKS_RUN_DEPENDS= links>=0:www/links + +LYNX_DESC= Install dependencies for www/lynx +LYNX_BUILD_DEPENDS= lynx>=0:www/lynx +LYNX_RUN_DEPENDS= lynx>=0:www/lynx + +W3M_DESC= Install dependencies for www/w3m +W3M_BUILD_DEPENDS= w3m>=0:www/w3m +W3M_RUN_DEPENDS= w3m>=0:www/w3m OPTIONS_DEFAULT= SMTP FLOCK