998898e351
Fix pkglint warnings while here. dbus 1.12.10 (2018-08-02) ========================= The “beam deflection” release. Fixes: • Prevent reading up to 3 bytes beyond the end of a truncated message. This could in principle be an information leak or denial of service on the system bus, but is not believed to be exploitable to crash the system bus or leak interesting information in practice. (fd.o #107332, Simon McVittie) • Fix build with gcc 8 -Werror=cast-function-type (fd.o #107349, Simon McVittie) • Fix warning from gcc 8 about suspicious use of strncpy() when populating struct sockaddr_un (fd.o #107350, Simon McVittie) • Fix a minor memory leak when a DBusServer listens on a new address (fd.o #107194, Simon McVittie) • Fix an invalid NULL argument to rmdir() if a nonce-tcp DBusServer runs out of memory (fd.o #107194, Simon McVittie) • Don't use misleading errno-derived error names if getaddrinfo() or getnameinfo() fails with a code other than EAI_SYSTEM (fd.o #106395, Simon McVittie) • Skip tests that require working TCP if we are in a container environment where 127.0.0.1 cannot be resolved (fd.o #106812, Simon McVittie)
112 lines
2.9 KiB
Makefile
112 lines
2.9 KiB
Makefile
# $NetBSD: Makefile,v 1.115 2018/08/16 08:57:09 wiz Exp $
|
|
|
|
DISTNAME= dbus-1.12.10
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.freedesktop.org/Software/dbus
|
|
COMMENT= Message bus system
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
CONFLICTS+= dbus-glib<0.71
|
|
CONFLICTS+= py27-dbus<0.71
|
|
|
|
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_TOOLS+= gmake msgfmt pkg-config
|
|
USE_LIBTOOL= YES
|
|
|
|
PKGCONFIG_OVERRIDE= dbus-1.pc.in
|
|
|
|
BUILD_DEFS+= VARBASE PKG_SYSCONFBASE
|
|
|
|
OWN_DIRS_PERMS+= ${VARBASE}/db/dbus ${DBUS_USER} ${DBUS_GROUP} 0755
|
|
SPECIAL_PERMS+= libexec/dbus-daemon-launch-helper ${REAL_ROOT_USER} ${DBUS_GROUP} 4511
|
|
|
|
SMF_METHODS= dbus
|
|
SMF_NAME= dbus
|
|
|
|
MESSAGE_SRC+= MESSAGE
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q}
|
|
|
|
# Prevent the configure script from picking up a per-user tmp
|
|
# directory. See the commit message on revision 1.35
|
|
CONFIGURE_ARGS+= --with-session-socket-dir=/tmp
|
|
|
|
CONFIGURE_ARGS+= --disable-ansi
|
|
CONFIGURE_ARGS+= --disable-console-owner-file
|
|
CONFIGURE_ARGS+= --disable-doxygen-docs
|
|
CONFIGURE_ARGS+= --enable-checks
|
|
CONFIGURE_ARGS+= --enable-static
|
|
|
|
###
|
|
### XXX the spawn test hangs, and some of these tests may be bogus
|
|
###
|
|
#.if !empty(PKGSRC_RUN_TEST:M[Yy][Ee][Ss])
|
|
#PKG_OPTIONS.dbus+= debug
|
|
#TEST_TARGET= check
|
|
#.endif
|
|
|
|
CONFIGURE_ARGS+= --with-dbus-user=${DBUS_USER}
|
|
CONFIGURE_ARGS+= --with-test-socket-dir=${WRKDIR:Q}
|
|
|
|
SUBST_CLASSES+= docbook
|
|
SUBST_STAGE.docbook= pre-configure
|
|
SUBST_FILES.docbook= doc/*.xml*
|
|
SUBST_SED.docbook= -e 's,http://www.oasis-open.org/docbook/xml,${PREFIX}/share/xml/docbook,g'
|
|
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
PLIST.linux= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-selinux
|
|
.endif
|
|
|
|
PLIST_VARS+= linux
|
|
|
|
DBUS_CONF_DIR= ${PKG_SYSCONFBASE}/dbus-1
|
|
OWN_DIRS+= ${DBUS_CONF_DIR}/services
|
|
OWN_DIRS+= ${DBUS_CONF_DIR}/system-services
|
|
OWN_DIRS+= ${DBUS_CONF_DIR}/session.d
|
|
OWN_DIRS+= ${DBUS_CONF_DIR}/system.d
|
|
|
|
RCD_SCRIPTS= dbus
|
|
|
|
PKG_GROUPS_VARS+= DBUS_GROUP
|
|
PKG_USERS_VARS+= DBUS_USER
|
|
|
|
PKG_GROUPS= ${DBUS_GROUP}
|
|
PKG_USERS= ${DBUS_USER}:${DBUS_GROUP}
|
|
PKG_GECOS.${DBUS_USER}= System message bus
|
|
PKG_HOME.${DBUS_USER}= ${VARBASE}/run/dbus
|
|
|
|
FILES_SUBST+= DBUS_USER=${DBUS_USER}
|
|
FILES_SUBST+= DBUS_GROUP=${DBUS_GROUP}
|
|
|
|
BUILDLINK_TRANSFORM+= rm:-Wl,--gc-sections
|
|
# Package tries to use these if gcc accepts them, but that doesn't
|
|
# mean that we universally can *run* the executables
|
|
BUILDLINK_TRANSFORM+= rm:-fPIE
|
|
BUILDLINK_TRANSFORM+= rm:-pie
|
|
|
|
BUILDLINK_TRANSFORM.OpenBSD+= rm:-lrt
|
|
|
|
.include "options.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/introspect.* \
|
|
${DESTDIR}${PREFIX}/share/doc/dbus/
|
|
${RM} -f ${DESTDIR}${PREFIX}/etc/dbus-1/s*.conf
|
|
${RMDIR} ${DESTDIR}${PREFIX}/etc/dbus-1 || ${TRUE}
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
BUILDLINK_ABI_DEPENDS.expat+= expat>=2.1.0
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|