pkgsrc/sysutils/dbus/Makefile.common
jlam 7820875fff Remove the abuse of buildlink that was pkg-config/buildlink3.mk. That
file's sole purpose was to provide a dependency on pkg-config and set
some environment variables.  Instead, turn pkg-config into a "tool"
in the tools framework, where the pkg-config wrapper automatically
adds PKG_CONFIG_LIBDIR to the environment before invoking the real
pkg-config.

For all package Makefiles that included pkg-config/buildlink3.mk, remove
that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-08-10 20:56:10 +00:00

81 lines
2.2 KiB
Makefile

# $NetBSD: Makefile.common,v 1.8 2005/08/10 20:56:23 jlam Exp $
#
# XXX Do not update to 0.30 or above yet. The API in the 0.2x series is
# XXX the most commonly used ATM.
DBUS_VERSION= 0.23.4
DISTNAME= dbus-${DBUS_VERSION}
CATEGORIES= sysutils
MASTER_SITES= http://freedesktop.org/software/dbus/releases/
MAINTAINER= jmmv@NetBSD.org
HOMEPAGE= http://www.freedesktop.org/Software/dbus
COMMENT= Message bus system
DISTINFO_FILE= ${.CURDIR}/../../sysutils/dbus/distinfo
PATCHDIR= ${.CURDIR}/../../sysutils/dbus/patches
GNU_CONFIGURE= YES
USE_TOOLS+= gmake pkg-config
USE_LIBTOOL= YES
USE_PKGINSTALL= YES
PKGCONFIG_OVERRIDE= dbus-1.pc
PKGCONFIG_OVERRIDE+= dbus-glib-1.pc
PKGCONFIG_OVERRIDE+= dbus-sharp.pc
CONFIGURE_ARGS+= --disable-qt
CONFIGURE_ARGS+= --disable-glib
CONFIGURE_ARGS+= --disable-gtk
CONFIGURE_ARGS+= --disable-xml-docs
CONFIGURE_ARGS+= --disable-doxygen-docs
CONFIGURE_ARGS+= --disable-gcj
CONFIGURE_ARGS+= --disable-mono
CONFIGURE_ARGS+= --disable-mono-docs
CONFIGURE_ARGS+= --disable-python
CONFIGURE_ARGS+= --disable-selinux
CONFIGURE_ARGS+= --enable-checks
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --with-xml=expat
CONFIGURE_ARGS+= --without-x
PKG_SYSCONFSUBDIR= dbus-1
# gcc 2.95 does not understand -Wfloat-equal
BUILDLINK_TRANSFORM+= rm:-Wfloat-equal
.if defined(DBUS_INTERFACE)
DBUS_ARGS?= ${DBUS_INTERFACE}
DBUS_DIRS?= ${DBUS_INTERFACE}
PKGNAME= ${DISTNAME:S/dbus/dbus-${DBUS_INTERFACE}/}
COMMENT+= (${DBUS_INTERFACE} interface)
SUBST_CLASSES+= paths
SUBST_STAGE.paths= pre-configure
SUBST_MESSAGE.paths= "Fixing paths to installed dbus\' libraries."
SUBST_SED.paths= -e 's|$$(top_builddir)/dbus/libdbus-1.la|${BUILDLINK_PREFIX.dbus}/lib/libdbus-1.la|g'
SUBST_FILES.paths=
BUILD_DIRS=
INSTALL_DIRS=
. for f in ${DBUS_ARGS}
CONFIGURE_ARGS:= ${CONFIGURE_ARGS:S/--disable-${f}/--enable-${f}/}
. endfor
. for f in ${DBUS_DIRS}
BUILD_DIRS+= ${WRKSRC}/${f}
INSTALL_DIRS+= ${WRKSRC}/${f}
SUBST_FILES.paths+= ${f}/Makefile.in
. endfor
. undef f
BUILDLINK_DEPENDS.dbus+= dbus>=${DBUS_VERSION}
. include "../../sysutils/dbus/buildlink3.mk"
.endif
.include "../../textproc/expat/buildlink3.mk"