de7c83c895
From pkgsrc-wip, packaged by Paulo Matias. Anti-Grain Geometry (AGG) is an Open Source, free of charge graphic library, written in industrially standard C++. AGG doesn't depend on any graphic API or technology. Basically, you can think of AGG as of a rendering engine that produces pixel images in memory from some vectorial data.
22 lines
581 B
Makefile
22 lines
581 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/04/27 06:41:08 wiz Exp $
|
|
#
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
AGG_BUILDLINK3_MK:= ${AGG_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= agg
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nagg}
|
|
BUILDLINK_PACKAGES+= agg
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}agg
|
|
|
|
.if ${AGG_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.agg+= agg>=2.5
|
|
BUILDLINK_PKGSRCDIR.agg?= ../../graphics/agg
|
|
.endif # AGG_BUILDLINK3_MK
|
|
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|