From 2d1ba244e90207d03eef397a99aa4091baeec5b3 Mon Sep 17 00:00:00 2001 From: joerg Date: Fri, 20 Mar 2009 19:23:50 +0000 Subject: Simply and speed up buildlink3.mk files and processing. This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time. --- print/py-cups/buildlink3.mk | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'print/py-cups') diff --git a/print/py-cups/buildlink3.mk b/print/py-cups/buildlink3.mk index b3808e3a2f5..2e551d2a63f 100644 --- a/print/py-cups/buildlink3.mk +++ b/print/py-cups/buildlink3.mk @@ -1,21 +1,14 @@ -# $NetBSD: buildlink3.mk,v 1.1.1.1 2009/01/10 20:13:29 markd Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2009/03/20 19:25:16 joerg Exp $ -BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ -PY_CUPS_BUILDLINK3_MK:= ${PY_CUPS_BUILDLINK3_MK}+ +BUILDLINK_TREE+= py-cups -.if ${BUILDLINK_DEPTH} == "+" -BUILDLINK_DEPENDS+= py-cups -.endif +.if !defined(PY_CUPS_BUILDLINK3_MK) +PY_CUPS_BUILDLINK3_MK:= -BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npy-cups} -BUILDLINK_PACKAGES+= py-cups -BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}py-cups - -.if ${PY_CUPS_BUILDLINK3_MK} == "+" BUILDLINK_API_DEPENDS.py-cups+= ${PYPKGPREFIX}-cups>=1.9.44 BUILDLINK_PKGSRCDIR.py-cups?= ../../print/py-cups -.endif # PY_CUPS_BUILDLINK3_MK #.include "../../print/cups/buildlink3.mk" +.endif # PY_CUPS_BUILDLINK3_MK -BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} +BUILDLINK_TREE+= -py-cups -- cgit v1.2.3