c3fb913449
Graphite is a project under development within SIL's Non-Roman Script Initiative and Language Software Development groups to provide rendering capabilities for complex non-Roman writing systems. Its smart-font engine is the bit that takes a Unicode string, font formatting information (features, size, etc.), and a font, and returns a set of positioned glyphs. Graphite also does more than this, in that it can handle cursor tracking and interaction with the application for string selection, etc.
19 lines
630 B
Makefile
19 lines
630 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/12/09 01:54:25 minskim Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
SILGRAPHITE_BUILDLINK3_MK:= ${SILGRAPHITE_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= silgraphite
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nsilgraphite}
|
|
BUILDLINK_PACKAGES+= silgraphite
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}silgraphite
|
|
|
|
.if ${SILGRAPHITE_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.silgraphite+= silgraphite>=2.3
|
|
BUILDLINK_PKGSRCDIR.silgraphite?= ../../graphics/silgraphite
|
|
.endif # SILGRAPHITE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|