pkgsrc/x11/qt4-tools/buildlink3.mk
jlam c16221a4db Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.

For example, "make show-buildlink3" in fonts/Xft2 displays:

	zlib
	fontconfig
	    iconv
	    zlib
	    freetype2
	    expat
	freetype2
	Xrender
	    renderproto
2006-07-08 23:10:35 +00:00

35 lines
1.2 KiB
Makefile

# $NetBSD: buildlink3.mk,v 1.7 2006/07/08 23:11:16 jlam Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
QT4_TOOLS_BUILDLINK3_MK:= ${QT4_TOOLS_BUILDLINK3_MK}+
.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+= qt4-tools
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nqt4-tools}
BUILDLINK_PACKAGES+= qt4-tools
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}qt4-tools
.if !empty(QT4_TOOLS_BUILDLINK3_MK:M+)
BUILDLINK_API_DEPENDS.qt4-tools+= qt4-tools>=4.1.0
BUILDLINK_ABI_DEPENDS.qt4-tools+= qt4-tools>=4.1.2nb1
BUILDLINK_PKGSRCDIR.qt4-tools?= ../../x11/qt4-tools
BUILDLINK_DEPMETHOD.qt4-tools?= build
.endif # QT4_TOOLS_BUILDLINK3_MK
.include "../../x11/qt4-libs/buildlink3.mk"
CONFIGURE_ENV+= UIC="${QTDIR}/bin/uic"
MAKE_ENV+= UIC="${QTDIR}/bin/uic"
CONFIGURE_ENV+= QMAKE="${QTDIR}/bin/qmake"
MAKE_ENV+= QMAKE="${QTDIR}/bin/qmake"
# the way the spec files are currently instealled via pkgsrc, they
# are all identical anyway, so just pick one and point to it.
# Without specifying QMAKESPEC, qmake can't figure it out on some
# platforms (solaris for example)
CONFIGURE_ENV+= QMAKESPEC=${QTDIR}/mkspecs/netbsd-g++
MAKE_ENV+= QMAKESPEC=${QTDIR}/mkspecs/netbsd-g++
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}