1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
require 'formula'
class Ipmiutil < Formula
homepage 'http://ipmiutil.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/ipmiutil/ipmiutil-2.9.5.tar.gz'
sha1 '265f022c876da373b2ecb4be2bc0f98e65f70977'
bottle do
cellar :any
sha1 "463fb38c4ac02170177e043ecddbd0b598bce163" => :yosemite
sha1 "91da6fd51706e874f8a72249339eb3a7bd22adba" => :mavericks
sha1 "15a3e15c010478e83bf1aa38f9369329f417220e" => :mountain_lion
end
depends_on "openssl"
# Ensure ipmiutil does not try to link against (disabled) OpenSSL's MD2
# support. Patch submitted upstream in
# http://sourceforge.net/p/ipmiutil/mailman/message/33373858/
patch :DATA
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-sha256",
"--enable-gpl"
system "make", "TMPDIR=#{ENV['TMPDIR']}"
# DESTDIR is needed to make everything go where we want it.
system "make", "prefix=/",
"DESTDIR=#{prefix}",
"varto=#{var}/lib/#{name}",
"initto=#{etc}/init.d",
"sysdto=#{prefix}/#{name}",
"install"
end
test do
system "#{bin}/ipmiutil", "delloem", "help"
end
end
__END__
diff -u ./configure.bak ./configure
--- ./configure.bak 2015-02-04 22:15:07.000000000 +0100
+++ ./configure 2015-02-04 22:16:18.000000000 +0100
@@ -20739,7 +20739,7 @@
echo "Detected HP-UX"
os=hpux
MD2_CFLAGS="-DSKIP_MD2"
- OS_CFLAGS="-DHPUX"
+ OS_CFLAGS="-DHPUX $MD2_CFLAGS"
OS_LFLAGS=""
OS_DRIVERS="ipmimv.c"
drivers="open"
@@ -20748,7 +20748,7 @@
echo "Detected MacOSX"
os=macos
MD2_CFLAGS="-DSKIP_MD2"
- OS_CFLAGS="-DMACOS"
+ OS_CFLAGS="-DMACOS $MD2_CFLAGS"
OS_LFLAGS=""
OS_DRIVERS="ipmimv.c ipmidir.c"
drivers="open direct"
|