Index: head/graphics/graphite2/Makefile =================================================================== --- head/graphics/graphite2/Makefile (revision 438983) +++ head/graphics/graphite2/Makefile (revision 438984) @@ -1,23 +1,24 @@ # $FreeBSD$ PORTNAME= graphite2 PORTVERSION= 1.3.9 +PORTREVISION= 1 CATEGORIES= graphics print MAINTAINER= office@FreeBSD.org COMMENT= Rendering capabilities for complex non-Roman writing systems LICENSE= GPLv2 LGPL21 MPL LICENSE_COMB= dual USE_GITHUB= yes GH_ACCOUNT= silnrsi GH_PROJECT= graphite USES= cmake USE_LDCONFIG= yes post-patch: @${REINPLACE_CMD} -e 's,/pkgconfig,data/pkgconfig,g' ${WRKSRC}/CMakeLists.txt .include Index: head/graphics/graphite2/files/patch-src_FeatureMap.cpp =================================================================== --- head/graphics/graphite2/files/patch-src_FeatureMap.cpp (nonexistent) +++ head/graphics/graphite2/files/patch-src_FeatureMap.cpp (revision 438984) @@ -0,0 +1,12 @@ +--- src/FeatureMap.cpp.orig 2016-11-11 09:53:21 UTC ++++ src/FeatureMap.cpp +@@ -275,7 +275,8 @@ bool FeatureRef::applyValToFeature(uint3 + else + if (pDest.m_pMap!=&m_pFace->theSill().theFeatureMap()) + return false; //incompatible +- pDest.reserve(m_index); ++ if (m_index >= pDest.size()) ++ pDest.resize(m_index+1); + pDest[m_index] &= ~m_mask; + pDest[m_index] |= (uint32(val) << m_bits); + return true; Property changes on: head/graphics/graphite2/files/patch-src_FeatureMap.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property