This also fixes an empty version field in pugixml's pkg-config file. Some consumers like graphics/waylandpp refuse to use the system pugixml because of it. - Take maintainership - Cleanup some things that are no longer needed - Use CMAKE_{OFF,ON} helpers Changes: https://pugixml.org/docs/manual.html#v1.9 ABI: https://abi-laboratory.pro/tracker/timeline/pugixml/ PR: 234779 Approved by: ybungalobill@gmail.com (maintainer)
18 lines
416 B
Makefile
18 lines
416 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pugixml
|
|
PORTVERSION= 1.9
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://github.com/zeux/pugixml/releases/download/v${PORTVERSION}/
|
|
|
|
MAINTAINER= tobik@FreeBSD.org
|
|
COMMENT= Light-weight, simple and fast XML parser for C++ with XPath support
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= cmake compiler:c++11-lang
|
|
|
|
CMAKE_OFF= BUILD_TESTS
|
|
CMAKE_ON= BUILD_SHARED_LIBS BUILD_STATIC_LIBS BUILD_PKGCONFIG
|
|
|
|
.include <bsd.port.mk>
|