pkgsrc/mk/x11.buildlink3.mk
joerg 19f594fed7 Proper include guards to unbreak nautilus. This wasn't such a big
problem before, but the move to Xorg increased the including of this
file a lot.
2006-12-01 13:05:53 +00:00

41 lines
1.1 KiB
Makefile

# $NetBSD: x11.buildlink3.mk,v 1.7 2006/12/01 13:05:53 joerg Exp $
#
# This Makefile fragment is meant to be included by packages that
# require an X11 distribution. x11.buildlink3.mk will include the
# buildlink3.mk file from the appropriate X11 distribution.
#
X11_BUILDLINK3_MK:= ${X11_BUILDLINK3_MK}+
.if !defined(_X11_BUILDLINK3_MK)
_X11_BUILDLINK3_MK= 1
USE_X11= yes
. include "../../mk/bsd.prefs.mk"
#
# Sanity checks.
#
. if ${X11_TYPE} != "native" && ${X11_TYPE} != "xorg"
_WRONG_X11_TYPE:= ${X11_TYPE}
PKG_FAIL_REASON+= "[x11.version.mk] X11_TYPE must either be \"xorg\" or \"native\", but not \"${_WRONG_X11_TYPE:Q}\"."
X11_TYPE:= native
X11BASE:= /usr
. endif
. include "../../mk/x11.version.mk"
. if defined(GNU_CONFIGURE)
CONFIGURE_ARGS+= --x-includes=${X11BASE:Q}/include
CONFIGURE_ARGS+= --x-libraries=${X11BASE:Q}/lib${LIBABISUFFIX:Q}
. endif
X11_LDFLAGS+= ${COMPILER_RPATH_FLAG}${X11BASE}/lib${LIBABISUFFIX}
X11_LDFLAGS+= -L${X11BASE}/lib${LIBABISUFFIX}
.endif # _X11_BUILDLINK3_MK
.include "${X11_PKGSRCDIR.${X11_TYPE}}/buildlink3.mk"
X11_BUILDLINK3_MK:= ${X11_BUILDLINK3_MK:S/+$//}