2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-04 15:18:44 +00:00
|
|
|
|
|
|
|
class DBus <Formula
|
2010-09-23 19:29:11 +00:00
|
|
|
url 'http://dbus.freedesktop.org/releases/dbus/dbus-1.4.0.tar.gz'
|
2009-10-04 15:18:44 +00:00
|
|
|
homepage 'http://www.freedesktop.org/wiki/Software/dbus'
|
2010-09-23 19:29:11 +00:00
|
|
|
md5 'f59618b18d2fb2bd1fce9e1c5a2a3282'
|
2009-10-04 15:18:44 +00:00
|
|
|
|
2009-11-13 08:53:11 +00:00
|
|
|
# Don't clean the empty directories that D-Bus needs
|
|
|
|
skip_clean "etc/dbus-1/session.d"
|
|
|
|
skip_clean "etc/dbus-1/system.d"
|
|
|
|
skip_clean "var/run/dbus"
|
2009-10-04 15:18:44 +00:00
|
|
|
|
2010-12-09 00:22:50 +00:00
|
|
|
def patches
|
|
|
|
# Patches merged upstream for launchd support.
|
|
|
|
# See http://bugs.freedesktop.org/show_bug.cgi?id=14259
|
|
|
|
[ 'http://cgit.freedesktop.org/dbus/dbus/patch/?id=5125fc165454e81849a5b20c1e75b4f74bdbcd2c',
|
|
|
|
'http://cgit.freedesktop.org/dbus/dbus/patch/?id=eb66c0a9c001ea08793b38470d12611ffaafa436',
|
2010-12-12 01:17:32 +00:00
|
|
|
'http://cgit.freedesktop.org/dbus/dbus/patch/?id=f1b9aac417d8fb716d6ed19128fe429e8a41adba',
|
|
|
|
'http://cgit.freedesktop.org/dbus/dbus/patch/?id=5232faad4039041ee178287eb528d8db13aa0f66' ]
|
2010-12-09 00:22:50 +00:00
|
|
|
end
|
|
|
|
|
2009-10-04 15:18:44 +00:00
|
|
|
def install
|
2009-11-13 08:53:11 +00:00
|
|
|
# Fix the TMPDIR to one D-Bus doesn't reject due to odd symbols
|
|
|
|
ENV["TMPDIR"] = "/tmp"
|
2010-12-09 00:22:50 +00:00
|
|
|
|
|
|
|
# Needed to regenerate configure for the patches to work
|
|
|
|
system "autoreconf -ivf"
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-xml-docs",
|
|
|
|
"--disable-doxygen-docs",
|
2010-12-09 00:22:50 +00:00
|
|
|
"--enable-launchd",
|
|
|
|
"--with-launchd-agent-dir=#{prefix}",
|
2010-10-21 14:54:17 +00:00
|
|
|
"--without-x"
|
2009-10-04 15:18:44 +00:00
|
|
|
system "make install"
|
|
|
|
|
2009-11-13 08:53:11 +00:00
|
|
|
# Generate D-Bus's UUID for this machine
|
2010-08-08 17:20:15 +00:00
|
|
|
system "#{bin}/dbus-uuidgen", "--ensure=#{prefix}/var/lib/dbus/machine-id"
|
2009-10-04 15:18:44 +00:00
|
|
|
end
|
2010-12-09 00:22:50 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
If this is your first install, automatically load on login with:
|
|
|
|
cp #{prefix}/org.freedesktop.dbus-session.plist ~/Library/LaunchAgents
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
|
|
|
|
|
|
|
|
If this is an upgrade and you already have the org.freedesktop.dbus-session.plist loaded:
|
|
|
|
launchctl unload -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
|
|
|
|
cp #{prefix}/org.freedesktop.dbus-session.plist ~/Library/LaunchAgents
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
|
|
|
|
EOS
|
|
|
|
end
|
2009-10-04 15:18:44 +00:00
|
|
|
end
|