ed37ac4a64
1.3.13 - Resolve minor spacing issue in rtl non-overlap kerning - python3 for graphite.py - Better fuzzing - Better building on windows 1.3.12 - Graphite no longer does dumb rendering for fonts with no smarts - Segment caching code removed. Anything attempting to use the segment cache gets given a regular face instead - Add libfuzzer support - Builds now require C++11 - Improvements to Windows 64 bit builds - Support different versions of python including 32 bit and python 3 - Various minor bug fixes
36 lines
1,004 B
Makefile
36 lines
1,004 B
Makefile
# $NetBSD: Makefile,v 1.11 2019/07/17 09:45:13 nia Exp $
|
|
|
|
DISTNAME= graphite2-1.3.13
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=silgraphite/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://sourceforge.net/projects/silgraphite/
|
|
COMMENT= Cross-platform rendering for complex writing systems
|
|
LICENSE= gnu-lgpl-v2
|
|
|
|
USE_LANGUAGES= c c++11
|
|
USE_CMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
# C++11
|
|
GCC_REQD+= 4.8
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
# Linux seems to need this to build by default, but apparently it is
|
|
# only used for test, so for now use 'build' dependency
|
|
BUILDLINK_DEPMETHOD.freetype2?= build
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.endif
|
|
|
|
# python and py-fonttools seem to be used only during test
|
|
# uncomment the following to do so
|
|
#TEST_TARGET= test
|
|
#PYTHON_FOR_BUILD_ONLY?= tool
|
|
#.include "../../lang/python/tool.mk"
|
|
#BUILD_DEPENDS+= ${PYPKGPREFIX}-fonttools-[0-9]*:../../fonts/py-fonttools/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|