mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
90238a4d67
Remove 'A' from COMMENT, update LIB_DEPENDS to new syntax. Use USES=gmake pathfix. remove unneeded libtool. Stagify.
70 lines
1.9 KiB
Makefile
70 lines
1.9 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/dbus/Makefile,v 1.58 2013/02/15 15:06:49 kwm Exp $
|
|
|
|
PORTNAME= dbus
|
|
PORTVERSION= 1.6.18
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Message bus system for inter-application communication
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USE_GNOME= libxml2 ltverhack
|
|
USES= gmake pathfix
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS=--localstatedir=/var \
|
|
--with-test-socket-dir=${WRKDIR} \
|
|
--with-system-pid-file=/var/run/dbus/dbus.pid \
|
|
--with-system-socket=/var/run/dbus/system_bus_socket \
|
|
--with-session-socket-dir=/tmp \
|
|
--disable-doxygen-docs \
|
|
--disable-xml-docs
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
USE_RC_SUBR= dbus
|
|
USE_GNOME_SUBR= yes
|
|
|
|
USERS= messagebus
|
|
GROUPS= messagebus
|
|
|
|
PLIST_SUB= VERSION="1.0"
|
|
|
|
OPTIONS_DEFINE= X11
|
|
OPTIONS_DEFAULT=X11
|
|
X11_DESC= Support X11 Desktop Environments
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MX11}
|
|
USE_XORG= ice sm x11
|
|
.else
|
|
CONFIGURE_ARGS+=--without-x
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/dbus/dbus-sysdeps-unix.c
|
|
@${REINPLACE_CMD} -e 's|/lib/dbus/machine-id|/db/dbus/machine-id|g' \
|
|
${WRKSRC}/doc/dbus-uuidgen.1 \
|
|
${WRKSRC}/dbus/Makefile.in \
|
|
${WRKSRC}/tools/Makefile.in
|
|
@${REINPLACE_CMD} '/^SUBDIRS/,/^$$/ s|test||g' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|THREAD_LIBS -lrt|THREAD_LIBS|g ; \
|
|
s|dummy man2html|dummy man2html_disable|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|install-data-am: install-data-local|install-data-am:|g' \
|
|
${WRKSRC}/tools/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/dbus-1/interfaces
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdbus-1.so.3
|
|
|
|
.include <bsd.port.mk>
|