61e920e938
Changelog: https://github.com/harfbuzz/harfbuzz/releases/tag/14.2.1 PR: 295396 Approved by: maintainer timeout, 1+ month Exp-run by: antoine (previous version)
68 lines
1.6 KiB
Makefile
68 lines
1.6 KiB
Makefile
PORTNAME= harfbuzz
|
|
DISTVERSION= 14.2.1
|
|
PORTREVISION?= 0
|
|
CATEGORIES= print
|
|
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/
|
|
|
|
MAINTAINER= desktop@FreeBSD.org
|
|
COMMENT?= OpenType text shaping engine
|
|
WWW= https://harfbuzz.github.io/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libfreetype.so:print/freetype2 \
|
|
libgraphite2.so:graphics/graphite2 \
|
|
libpng16.so:graphics/png
|
|
|
|
USES= compiler:c++11-lib cpe gnome meson \
|
|
pkgconfig python:build shebangfix tar:xz
|
|
CPE_VENDOR= harfbuzz_project
|
|
SHEBANG_GLOB= *.py
|
|
USE_GNOME= glib20 introspection:build
|
|
USE_LDCONFIG= yes
|
|
|
|
MESON_ARGS= -Dgraphite2=enabled \
|
|
-Dchafa=disabled \
|
|
-Dgpu=disabled \
|
|
-Dtests=disabled
|
|
|
|
PLIST_SUB+= LIBVER=0.6${DISTVERSION:S|.||g}.0
|
|
|
|
HARFBUZZ_SLAVE?= no
|
|
|
|
.if ${HARFBUZZ_SLAVE} == no
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc \
|
|
help2man:misc/help2man
|
|
DOCS_MESON_ENABLED= docs
|
|
.endif
|
|
|
|
.if ${HARFBUZZ_SLAVE} == no
|
|
MESON_ARGS+= -Dicu=disabled \
|
|
-Dcairo=disabled
|
|
.elif ${HARFBUZZ_SLAVE} == icu
|
|
LIB_DEPENDS+= libharfbuzz.so:print/harfbuzz \
|
|
libicudata.so:devel/icu
|
|
MESON_ARGS+= -Dicu=enabled \
|
|
-Dcairo=disabled \
|
|
-Ddocs=disabled
|
|
.elif ${HARFBUZZ_SLAVE} == cairo
|
|
LIB_DEPENDS+= libharfbuzz.so:print/harfbuzz
|
|
USE_GNOME+= cairo
|
|
MESON_ARGS+= -Dcairo=enabled \
|
|
-Dicu=disabled \
|
|
-Ddocs=disabled
|
|
.endif
|
|
|
|
pre-test:
|
|
@if [ ! -e ${WRKDIR}/.meson_build_tests ]; then \
|
|
${RM} ${CONFIGURE_COOKIE} ${BUILD_COOKIE}; \
|
|
${MAKE} -C${.CURDIR} build MESON_ARGS="${MESON_ARGS} --reconfigure -Dtests=enabled"; \
|
|
${TOUCH} ${WRKDIR}/.meson_build_tests; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|