svn commit: r434326 - head/security/luasec

Jan Beich jbeich at freebsd.org
Sat Feb 18 03:47:18 UTC 2017


[1~Bryan Drewery <bdrewery at FreeBSD.org> writes:

> Author: bdrewery
> Date: Sat Feb 18 02:58:46 2017
> New Revision: 434326
> URL: https://svnweb.freebsd.org/changeset/ports/434326
>
> Log:
>   Fix security/luasec-51 to have the proper PKGNAMEPREFIX of lua51- after r434315.
[...]
> +.if !defined(SLAVE_PORT)
>  USES=		lua ssl
> +.endif

Try to avoid SLAVE_PORT conditionals in ports. In this case ?= would
have been enough e.g.,

  USES?=		lua ssl

or dedup USES=ssl in the slave via

  USES?=		lua
  USES+=		ssl

As for origin I wish lua ports follow python example e.g.,

  security/lua-luasec
  security/lua51-luasec

unlike statu quo where package *prefix* ends up as port *suffix*.


More information about the svn-ports-all mailing list