pkgsrc/devel/editorconfig-core/options.mk
adam df0e7ce35f editorconfig-core: updated to 0.12.4
v0.12.4
Fix two OOM issues.
Fix one buffer overflow issue.
Fix one memory allocation error caused by strdup.
Upgrade CMake minimum to 3.5.1.
Other misc fixes.

v0.12.3
Bump required minimum cmake version to 2.8.12.
Support pcre2 and drop support for pcre.

v0.12.2
Add support for pkgconfig.
Memory leaks and crash fixes.
Improve error messages.
Add CI on AppVeyor.
Known issue: Test utf_8_char on AppVeyor won't pass.
2021-03-20 18:52:45 +00:00

18 lines
470 B
Makefile

# $NetBSD: options.mk,v 1.3 2021/03/20 18:52:45 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.editorconfig-core
PKG_SUPPORTED_OPTIONS= doc
.include "../../mk/bsd.options.mk"
###
### Build and install html documentation and man pages
###
PLIST_VARS+= doc
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
CMAKE_ARGS+= -DBUILD_DOCUMENTATION=ON
CMAKE_ARGS+= -DINSTALL_HTML_DOC=ON
PLIST.doc= yes
.else
CMAKE_ARGS+= -DBUILD_DOCUMENTATION=OFF
.endif