2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-04 15:18:44 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class DBus < Formula
|
2009-10-04 15:18:44 +00:00
|
|
|
homepage 'http://www.freedesktop.org/wiki/Software/dbus'
|
2012-02-20 01:33:30 +00:00
|
|
|
url 'http://dbus.freedesktop.org/releases/dbus/dbus-1.4.18.tar.gz'
|
|
|
|
sha256 'b5e0c3bd37fa0ca5e86e8d17c375d754de6cd5c1d46d5f2158a36ddd51de18cf'
|
2011-12-16 06:26:01 +00:00
|
|
|
|
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
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2012-01-06 17:02:50 +00:00
|
|
|
"--localstatedir=#{var}",
|
|
|
|
"--sysconfdir=#{etc}",
|
2010-04-07 05:58:35 +00:00
|
|
|
"--disable-xml-docs",
|
|
|
|
"--disable-doxygen-docs",
|
2010-12-09 00:22:50 +00:00
|
|
|
"--enable-launchd",
|
|
|
|
"--with-launchd-agent-dir=#{prefix}",
|
2012-02-21 18:04:36 +00:00
|
|
|
"--without-x",
|
|
|
|
"--disable-tests"
|
2010-12-27 18:56:42 +00:00
|
|
|
system "make"
|
|
|
|
ENV.deparallelize
|
2009-10-04 15:18:44 +00:00
|
|
|
system "make install"
|
|
|
|
|
2011-09-02 21:41:57 +00:00
|
|
|
(prefix+'org.freedesktop.dbus-session.plist').chmod 0644
|
|
|
|
|
2009-11-13 08:53:11 +00:00
|
|
|
# Generate D-Bus's UUID for this machine
|
2012-01-06 17:02:50 +00:00
|
|
|
system "#{bin}/dbus-uuidgen", "--ensure=#{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:
|
2011-02-27 08:07:58 +00:00
|
|
|
mkdir -p ~/Library/LaunchAgents
|
|
|
|
cp #{prefix}/org.freedesktop.dbus-session.plist ~/Library/LaunchAgents/
|
2010-12-09 00:22:50 +00:00
|
|
|
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
|
2011-02-27 08:07:58 +00:00
|
|
|
cp #{prefix}/org.freedesktop.dbus-session.plist ~/Library/LaunchAgents/
|
2010-12-09 00:22:50 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
|
|
|
|
EOS
|
|
|
|
end
|
2009-10-04 15:18:44 +00:00
|
|
|
end
|