On 2/21/19 1:09 AM, Matt Turner wrote:
> 
> 2)    Suggestions welcome for solving https://bugs.gentoo.org/637898
>       I have no ideas...
> 

The eclass documentation script wants a fixed default value for
variables that are optional.

For XORG_MODULE, instead of a case statement,

  if [[ -z ${XORG_MODULE} ]]; then
    case ${CATEGORY} in
      app-doc)             XORG_MODULE=doc/     ;;
      media-fonts)         XORG_MODULE=font/    ;;
      ...

you could make the default value "auto" (or some other magic value), and
then document that "auto" will guess based on the package's category.

The same thing should work for XORG_MODULE_REBUILD. First, I would
ensure that DRIVER is set to either "yes" or "no" (right now it can be
empty, I think). Then make the default value for XORG_MODULE_REBUILD
something like "auto", and do

  if [[ "${XORG_MODULE_REBUILD}" == auto ]]; then
    XORG_MODULE_REBUILD="${DRIVER}"
  fi

Reply via email to