| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include ${TOPDIR}/rules.mkPKG_NAME:=		dbusPKG_VERSION:=		1.2.16PKG_RELEASE:=		1PKG_MD5SUM:=		c7a47b851ebe02f6726b65b78d1b730bPKG_DESCR:=		DBUS libraryPKG_SECTION:=		netPKG_DEPENDS:=		libexpatPKG_URL:=		http://dbus.freedesktop.orgPKG_SITES:=		http://dbus.freedesktop.org/releases/dbus/include ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,DBUS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_STYLE:=	gnuCONFIGURE_ARGS+=	--disable-tests \			--disable-abstract-sockets \			--without-x \			--enable-checks \			--with-xml=expat \			--disable-dnotify \			--disable-kqueue \			--disable-xml-docs \			--disable-doxygen-docsCONFIGURE_ENV+=		ac_cv_have_abstract_sockets=noBUILD_STYLE:=		autoINSTALL_STYLE:=		autopost-install:	${INSTALL_DIR} ${IDIR_DBUS}/etc ${IDIR_DBUS}/usr/lib ${IDIR_DBUS}/usr/bin	${INSTALL_DIR} $(STAGING_DIR)/usr/include/dbus-1.0/dbus	${CP} ${WRKINST}/etc/dbus-1 ${IDIR_DBUS}/etc/	${CP} ${WRKINST}/usr/lib/libdbus-1.so.* ${IDIR_DBUS}/usr/lib/	$(CP) $(WRKINST)/usr/lib/dbus-1.0/include/dbus/dbus-arch-deps.h \		$(STAGING_DIR)/usr/include/dbus-1.0/dbus/	${INSTALL_BIN} ${WRKINST}/usr/bin/dbus-daemon ${IDIR_DBUS}/usr/bin/	${INSTALL_BIN} ${WRKINST}/usr/bin/dbus-launch ${IDIR_DBUS}/usr/bin/include ${TOPDIR}/mk/pkg-bottom.mk
 |