Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 May 2013 04:30:13 +0000
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        Wen Heping <wen@FreeBSD.org>
Cc:        svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org
Subject:   Re: svn commit: r317890 - head/sysutils/less
Message-ID:  <20130512043013.GA35859@FreeBSD.org>
In-Reply-To: <201305111537.r4BFbuOk046168@svn.freebsd.org>
References:  <201305111537.r4BFbuOk046168@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, May 11, 2013 at 03:37:56PM +0000, Wen Heping wrote:
> New Revision: 317890
> URL: http://svnweb.freebsd.org/changeset/ports/317890
> 
> @@ -11,18 +11,23 @@ MASTER_SITE_SUBDIR=	less
>  MAINTAINER=	jharris@widomaker.com
>  COMMENT=	A better pager utility

You could have trimmed indefinite article from COMMENT while you're here.

> +LICENSE=	GPLv3
> +
> +OPTIONS_DEFINE=	COLOR_LESS
> +COLOR_LESS_DESC=Enables color support via escape sequence

This is a poorly chosen knob name: in English, it would rather mean "less(1)
without colors" (= colorless) than "color-enabled less(1)".  I would suggest
you rename it to just "COLORS" or "COLOR_SUPPORT" (a bit too long I guess).

Also notice missing tab after COLOR_LESS_DESC= -- I assume it was dropped
because COLOR_LESS_DESC= is 16 chars long; shortening option name would help
knobs to align nicely without having to sacrifice whitespace.

> -.if defined(COLOUR_LESS) || defined(COLOR_LESS)
> +.if ${PORT_OPTIONS:MCOLOUR_LESS}

Option name uses American (that is, correct) spelling of COLOR, but here
you check for COLOUR.  This would not work.  portlint(1) should have warned
about it.

./danfe



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20130512043013.GA35859>