]> git.ipfire.org Git - thirdparty/lldpd.git/blobdiff - osx/lldpd.rb
osx: update Homebrew recipe
[thirdparty/lldpd.git] / osx / lldpd.rb
index 06f659f362ad4721c4bd96331d14f72cd4497f64..1e33aeffffd2d8874f6e3b854091d10e03163491 100644 (file)
@@ -1,33 +1,41 @@
-require 'formula'
-
 class Lldpd < Formula
-  homepage 'http://vincentbernat.github.com/lldpd/'
-  url 'http://media.luffy.cx/files/lldpd/lldpd-0.7.2.tar.gz'
-  md5 'cee0e2ae7d4b8bf25ae234d9536052b8'
+  desc "Implementation of IEEE 802.1ab (LLDP)"
+  homepage "https://vincentbernat.github.io/lldpd/"
+  url "https://media.luffy.cx/files/lldpd/lldpd-0.9.6.tar.gz"
+  sha256 "e74e2dd7e2a233ca1ff385c925ddae2a916d302819d1433741407d2f8fb0ddd8"
 
-  option 'with-snmp', "Build SNMP subagent support"
-  option 'with-json', "Build JSON support for lldpcli"
+  option "with-snmp", "Build SNMP subagent support"
+  option "with-json", "Build JSON support for lldpcli"
 
-  depends_on 'readline'
-  depends_on 'libevent'
-  depends_on 'pkg-config'
-  depends_on 'net-snmp' if build.include? 'with-snmp'
-  depends_on 'jansson'  if build.include? 'with-json'
+  depends_on "pkg-config" => :build
+  depends_on "readline"
+  depends_on "libevent"
+  depends_on "net-snmp" if build.with? "snmp"
+  depends_on "jansson" if build.with? "json"
 
   def install
-    readline = Formula.factory 'readline'
-    args = [ "--prefix=#{prefix}",
-             "--with-xml",
-             "--with-readline",
-             "--with-privsep-chroot=/var/empty",
-             "CPPFLAGS=-I#{readline.include} -DRONLY=1",
-             "LDFLAGS=-L#{readline.lib}" ]
-    args << "--with-snmp" if build.include? 'with-snmp'
-    args << "--with-json" if build.include? 'with-json'
+    readline = Formula["readline"]
+    args = [
+      "--prefix=#{prefix}",
+      "--sysconfdir=#{etc}",
+      "--localstatedir=#{var}",
+      "--with-xml",
+      "--with-readline",
+      "--with-privsep-chroot=/var/empty",
+      "--with-launchddaemonsdir=no",
+      "CPPFLAGS=-I#{readline.include} -DRONLY=1",
+      "LDFLAGS=-L#{readline.lib}",
+    ]
+    args << (build.with?("snmp") ? "--with-snmp" : "--without-snmp")
+    args << (build.with?("json") ? "--with-json" : "--without-json")
 
     system "./configure", *args
     system "make"
-    system "make install"
+    system "make", "install"
+  end
+
+  def post_install
+    (var/"run").mkpath
   end
 
   def dscl(*args)
@@ -69,12 +77,13 @@ class Lldpd < Formula
   end
 
   plist_options :startup => true
+
   def plist
     additional_args = ""
-    if build.include? 'with-snmp'
+    if build.with? "snmp"
       additional_args += "<string>-x</string>"
     end
-    return <<-EOS.undent
+    <<-EOS.undent
     <?xml version="1.0" encoding="UTF-8"?>
     <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
     <plist version="1.0">
@@ -83,7 +92,7 @@ class Lldpd < Formula
       <string>#{plist_name}</string>
       <key>ProgramArguments</key>
       <array>
-        <string>#{opt_prefix}/sbin/lldpd</string>
+        <string>#{opt_sbin}/lldpd</string>
         #{additional_args}
       </array>
       <key>RunAtLoad</key><true/>
@@ -92,5 +101,4 @@ class Lldpd < Formula
     </plist>
     EOS
   end
-
 end