summaryrefslogtreecommitdiffstats
path: root/devel/dbus
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-07-22 03:45:20 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-07-22 03:45:20 +0800
commit0c081474ae30bff418b7d14ce154b613d213ae8f (patch)
treef06f8ea5a4fa19c0cf509b6197eb8370bbadbc2f /devel/dbus
parent9c73f0a82bf90661406d24693ab1b215a4ec0c09 (diff)
downloadmarcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.tar
marcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.tar.gz
marcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.tar.bz2
marcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.tar.lz
marcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.tar.xz
marcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.tar.zst
marcuscom-ports-0c081474ae30bff418b7d14ce154b613d213ae8f.zip
Remove dbus now that it is in the main ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2525 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/dbus')
-rw-r--r--devel/dbus/Makefile61
-rw-r--r--devel/dbus/distinfo2
-rw-r--r--devel/dbus/files/dbus.sh26
-rw-r--r--devel/dbus/files/patch-dbus-1.pc.in9
-rw-r--r--devel/dbus/files/patch-dbus_Makefile.in11
-rw-r--r--devel/dbus/files/patch-dbus_dbus-sysdeps.c51
-rw-r--r--devel/dbus/files/patch-ltmain.sh51
-rw-r--r--devel/dbus/pkg-descr8
-rw-r--r--devel/dbus/pkg-plist44
9 files changed, 0 insertions, 263 deletions
diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile
deleted file mode 100644
index 56fd6c276..000000000
--- a/devel/dbus/Makefile
+++ /dev/null
@@ -1,61 +0,0 @@
-# New ports collection makefile for: D-BUS
-# Date Created: 22 June 2004
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= dbus
-PORTVERSION= 0.21
-CATEGORIES= devel gnome
-MASTER_SITES= http://freedesktop.org/Software/dbus/releases/
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= A message bus system for inter-application communication
-
-LIB_DEPENDS= expat.5:${PORTSDIR}/textproc/expat2
-
-USE_GNOME= gnomehack lthack gtk20 libxml2
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-INSTALLS_SHLIB= yes
-USE_RC_SUBR= yes
-USE_PYTHON= yes
-CONFIGURE_ARGS= --enable-gtk \
- --disable-python \
- --disable-gcj \
- --disable-mono \
- --with-system-pid-file=/var/run/dbus.pid \
- --with-system-socket=/var/run \
- --with-session-socket-dir=/var/tmp \
- --disable-doxygen-docs \
- --disable-xml-docs
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-OPTIONS= QT "Enable Qt client support" off
-
-PLIST_SUB= VERSION="1.0"
-RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR}
-
-MAN1= dbus-cleanup-sockets.1 dbus-daemon-1.1 dbus-launch.1 \
- dbus-monitor.1 dbus-send.1
-
-.include <bsd.port.pre.mk>
-
-.if defined(WITH_QT) && !defined(WITHOUT_QT)
-CONFIGURE_ARGS+=--enable-qt
-PLIST_SUB+= QT=""
-.else
-CONFIGURE_ARGS+=--disable-qt
-PLIST_SUB+= QT="@comment "
-.endif
-
-post-patch:
- @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
- ${FILESDIR}/dbus.sh > ${WRKSRC}/dbus.sh
-
-post-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/dbus.sh ${PREFIX}/etc/rc.d
-
-.include <bsd.port.post.mk>
diff --git a/devel/dbus/distinfo b/devel/dbus/distinfo
deleted file mode 100644
index bc074ce55..000000000
--- a/devel/dbus/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (dbus-0.21.tar.gz) = 311229d60154334ee3f908badc56747d
-SIZE (dbus-0.21.tar.gz) = 1152107
diff --git a/devel/dbus/files/dbus.sh b/devel/dbus/files/dbus.sh
deleted file mode 100644
index 74783abe8..000000000
--- a/devel/dbus/files/dbus.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: dbus
-# REQUIRE: DAEMON
-# KEYWORD: FreeBSD
-#
-# Add the following lines to /etc/rc.conf to enable the D-BUS messaging system:
-#
-# dbus_enable="YES"
-#
-
-dbus_enable="NO"
-dbus_flags="--system"
-
-. %%RC_SUBR%%
-
-name=dbus
-rcvar=`set_rcvar`
-
-command="%%PREFIX%%/bin/dbus-daemon-1"
-pidfile="/var/run/${name}.pid"
-
-load_rc_config ${name}
-run_rc_command "$1"
diff --git a/devel/dbus/files/patch-dbus-1.pc.in b/devel/dbus/files/patch-dbus-1.pc.in
deleted file mode 100644
index 1b96c24f5..000000000
--- a/devel/dbus/files/patch-dbus-1.pc.in
+++ /dev/null
@@ -1,9 +0,0 @@
---- dbus-1.pc.in.orig Tue Jun 22 14:50:57 2004
-+++ dbus-1.pc.in Tue Jun 22 14:54:24 2004
-@@ -7,5 +7,5 @@
- Description: Free desktop message bus
- Version: @VERSION@
- Libs: -L${libdir} -ldbus-1
--Cflags: -I${includedir}/dbus-1.0 -I${libdir}/dbus-1.0/include
-+Cflags: -I${includedir}/dbus-1.0 -I${includedir}/dbus-1.0/include
-
diff --git a/devel/dbus/files/patch-dbus_Makefile.in b/devel/dbus/files/patch-dbus_Makefile.in
deleted file mode 100644
index c9f516435..000000000
--- a/devel/dbus/files/patch-dbus_Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- dbus/Makefile.in.orig Tue Jun 22 14:58:47 2004
-+++ dbus/Makefile.in Tue Jun 22 14:58:56 2004
-@@ -232,7 +232,7 @@
- INCLUDES = -I$(top_srcdir) $(DBUS_CLIENT_CFLAGS) -DDBUS_COMPILATION
-
- dbusincludedir = $(includedir)/dbus-1.0/dbus
--dbusarchincludedir = $(libdir)/dbus-1.0/include/dbus
-+dbusarchincludedir = $(includedir)/dbus-1.0/include/dbus
-
- lib_LTLIBRARIES = libdbus-1.la
-
diff --git a/devel/dbus/files/patch-dbus_dbus-sysdeps.c b/devel/dbus/files/patch-dbus_dbus-sysdeps.c
deleted file mode 100644
index 73c512b97..000000000
--- a/devel/dbus/files/patch-dbus_dbus-sysdeps.c
+++ /dev/null
@@ -1,51 +0,0 @@
---- dbus/dbus-sysdeps.c.orig Wed Mar 17 17:08:09 2004
-+++ dbus/dbus-sysdeps.c Tue Jun 22 15:41:42 2004
-@@ -740,12 +740,38 @@
- {
- int bytes_written;
- char buf[1] = { '\0' };
-+#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS)
-+ char cmsgmem[CMSG_SPACE (sizeof (struct cmsgcred))];
-+ struct cmsghdr *cmsg = (struct cmsghdr *) cmsgmem;
-+ struct iovec iov;
-+ struct msghdr msg;
-+#endif
-+
-+#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS)
-+ iov.iov_base = buf;
-+ iov.iov_len = 1;
-+
-+ memset (&msg, 0, sizeof (msg));
-+ msg.msg_iov = &iov;
-+ msg.msg_iovlen = 1;
-+
-+ msg.msg_control = cmsg;
-+ msg.msg_controllen = sizeof (cmsgmem);
-+ memset (cmsg, 0, sizeof (cmsgmem));
-+ cmsg->cmsg_len = sizeof (cmsgmem);
-+ cmsg->cmsg_level = SOL_SOCKET;
-+ cmsg->cmsg_type = SCM_CREDS;
-+#endif
-
- _DBUS_ASSERT_ERROR_IS_CLEAR (error);
-
- again:
-
-+#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS)
-+ bytes_written = sendmsg (server_fd, &msg, 0);
-+#else
- bytes_written = write (server_fd, buf, 1);
-+#endif
-
- if (bytes_written < 0 && errno == EINTR)
- goto again;
-@@ -862,7 +888,8 @@
- #ifdef HAVE_CMSGCRED
- if (cmsg->cmsg_len < sizeof (cmsgmem) || cmsg->cmsg_type != SCM_CREDS)
- {
-- dbus_set_error (error, DBUS_ERROR_FAILED);
-+ dbus_set_error (error, DBUS_ERROR_FAILED,
-+ "Did not receive credentials");
- _dbus_verbose ("Message from recvmsg() was not SCM_CREDS\n");
- return FALSE;
- }
diff --git a/devel/dbus/files/patch-ltmain.sh b/devel/dbus/files/patch-ltmain.sh
deleted file mode 100644
index ee9e9ddd0..000000000
--- a/devel/dbus/files/patch-ltmain.sh
+++ /dev/null
@@ -1,51 +0,0 @@
---- ltmain.sh.orig Fri Mar 19 16:22:09 2004
-+++ ltmain.sh Tue Jun 22 14:39:06 2004
-@@ -1280,7 +1280,7 @@
- esac
- elif test "X$arg" = "X-lc_r"; then
- case $host in
-- *-*-openbsd* | *-*-freebsd*)
-+ *-*-openbsd* | *-*-freebsd4*)
- # Do not include libc_r directly, use -pthread flag.
- continue
- ;;
-@@ -1290,8 +1290,16 @@
- continue
- ;;
-
-+ -pthread)
-+ compile_command="$compile_command -pthread"
-+ finalize_command="$finalize_command -pthread"
-+ compiler_flags="$compiler_flags -pthread"
-+ continue
-+ ;;
-+
- -module)
- module=yes
-+ build_old_libs=no
- continue
- ;;
-
-@@ -3000,6 +3008,9 @@
- # problems, so we reset it completely
- verstring=
- ;;
-+ *-*-freebsd*)
-+ # FreeBSD doesn't need this...
-+ ;;
- *)
- verstring="0.0"
- ;;
-@@ -5428,10 +5439,12 @@
- fi
-
- # Install the pseudo-library for information purposes.
-+ if /usr/bin/false; then
- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
- instname="$dir/$name"i
- $show "$install_prog $instname $destdir/$name"
- $run eval "$install_prog $instname $destdir/$name" || exit $?
-+ fi
-
- # Maybe install the static library, too.
- test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/devel/dbus/pkg-descr b/devel/dbus/pkg-descr
deleted file mode 100644
index 2a1c3cc0a..000000000
--- a/devel/dbus/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-D-BUS supplies both a system daemon (for events such as "new hardware device
-added" or "printer queue changed") and a per-user-login-session daemon (for
-general IPC needs among user applications). Also, the message bus is built on
-top of a general one-to-one message passing framework, which can be used by
-any two apps to communicate directly (without going through the message bus
-daemon).
-
-WWW: http://www.freedesktop.org/Software/dbus
diff --git a/devel/dbus/pkg-plist b/devel/dbus/pkg-plist
deleted file mode 100644
index 5596a89e9..000000000
--- a/devel/dbus/pkg-plist
+++ /dev/null
@@ -1,44 +0,0 @@
-bin/dbus-cleanup-sockets
-bin/dbus-daemon-1
-bin/dbus-glib-tool
-bin/dbus-launch
-bin/dbus-monitor
-bin/dbus-send
-bin/dbus-viewer
-etc/dbus-1/session.conf
-etc/dbus-1/system.conf
-etc/rc.d/dbus.sh
-include/dbus-%%VERSION%%/dbus/dbus-address.h
-include/dbus-%%VERSION%%/dbus/dbus-bus.h
-include/dbus-%%VERSION%%/dbus/dbus-connection.h
-include/dbus-%%VERSION%%/dbus/dbus-errors.h
-include/dbus-%%VERSION%%/dbus/dbus-glib.h
-include/dbus-%%VERSION%%/dbus/dbus-macros.h
-include/dbus-%%VERSION%%/dbus/dbus-memory.h
-include/dbus-%%VERSION%%/dbus/dbus-message.h
-include/dbus-%%VERSION%%/dbus/dbus-pending-call.h
-include/dbus-%%VERSION%%/dbus/dbus-protocol.h
-include/dbus-%%VERSION%%/dbus/dbus-server.h
-include/dbus-%%VERSION%%/dbus/dbus-threads.h
-include/dbus-%%VERSION%%/dbus/dbus-types.h
-include/dbus-%%VERSION%%/dbus/dbus.h
-include/dbus-%%VERSION%%/include/dbus/dbus-arch-deps.h
-lib/libdbus-1.a
-lib/libdbus-1.so
-lib/libdbus-1.so.0
-lib/libdbus-glib-1.a
-lib/libdbus-glib-1.so
-lib/libdbus-glib-1.so.0
-%%QT%%lib/libdbus-qt-1.a
-%%QT%%lib/libdbus-qt-1.so
-%%QT%%lib/libdbus-qt-1.so.0
-libdata/pkgconfig/dbus-1.pc
-libdata/pkgconfig/dbus-glib-1.pc
-@dirrm lib/dbus-%%VERSION%%/services
-@dirrm lib/dbus-%%VERSION%%
-@dirrm include/dbus-%%VERSION%%/include/dbus
-@dirrm include/dbus-%%VERSION%%/include
-@dirrm include/dbus-%%VERSION%%/dbus
-@dirrm include/dbus-%%VERSION%%
-@dirrm etc/dbus-1/system.d
-@dirrm etc/dbus-1