On 2012/06/23 15:18, Chris Bennett wrote:
> Config::Std - Load and save configuration files in a standard format
> The configuration language is deliberately simple and limited, and the
> module works hard to preserve as much information (section order,
> comments, etc.) as possible when a configuration file is updated.
>
>
> BUILD_DEPENDS= devel/p5-Class-Std
> RUN_DEPENDS= ${BUILD_DEPENDS}
Do this one the other way round,
RUN_DEPENDS= devel/p5-Class-Std
BUILD_DEPENDS= ${RUN_DEPENDS}
Doesn't make any actual difference now, but in some ports it does
matter (e.g. something with USE_GROFF), so this is the way we do it
everywhere for consistency.
With that change, ok with me for someone to import it.