blob: 8f8328f767c730adfabca16059c287203dd7d641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/04/19 18:46:43 kefren Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
MONO_TOOLS_BUILDLINK3_MK:= ${MONO_TOOLS_BUILDLINK3_MK}+
.if ${BUILDLINK_DEPTH} == "+"
BUILDLINK_DEPENDS+= mono-tools
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nmono-tools}
BUILDLINK_PACKAGES+= mono-tools
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}mono-tools
.if ${MONO_TOOLS_BUILDLINK3_MK} == "+"
BUILDLINK_API_DEPENDS.mono-tools+= mono-tools>=1.9
BUILDLINK_PKGSRCDIR.mono-tools?= ../../devel/mono-tools
.endif # MONO_TOOLS_BUILDLINK3_MK
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|