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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
require "formula"
# Xcode 4.3 provides the Apple libtool.
# This is not the same so as a result we must install this as glibtool.
class Libtool < Formula
homepage "https://www.gnu.org/software/libtool/"
url "http://ftpmirror.gnu.org/libtool/libtool-2.4.3.tar.xz"
mirror "https://ftp.gnu.org/gnu/libtool/libtool-2.4.3.tar.xz"
sha1 "7e946bd07b846a8803bf4321e82cd6be8059c0ca"
bottle do
cellar :any
sha1 "ede326069fb609eb68c66718f1d03b9c98c16e09" => :yosemite
sha1 "7c1881c0245947681ea82334f72310743886c63b" => :mavericks
sha1 "c321dc3dab8da5faefb1ef35c2eec49996738e37" => :mountain_lion
end
keg_only :provided_until_xcode43
option :universal
# apply upstream patch to respect '--program-prefix'
# http://git.savannah.gnu.org/cgit/libtool.git/commit/?id=c77eea5f6c0592423d925131489cc7772e34cf0b
# fix parallel build
# http://git.savannah.gnu.org/cgit/libtool.git/commit/?id=5627a7f498e07a40b970c3a5ab5e74a5053e956f
patch :DATA
def install
ENV.universal_binary if build.universal?
# Fix an issue with building universal; fixed upstream:
# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18942
# Need to touch the manpages after editing to prevent
# the buildsystem from thinking they need to be rebuilt.
inreplace Dir["build-aux/ltmain.{in,sh}"],
'$SED -e "$basename"', '$SED -e "$sed_basename"'
Dir["doc/*.1"].each {|f| touch f}
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--program-prefix=g",
"--enable-ltdl-install"
system "make"
system "make", "install"
end
def caveats; <<-EOS.undent
In order to prevent conflicts with Apple's own libtool we have prepended a "g"
so, you have instead: glibtool and glibtoolize.
EOS
end
test do
system "#{bin}/glibtool", "execute", "/usr/bin/true"
end
end
__END__
diff --git a/Makefile.in b/Makefile.in
index d49abac..6840d3f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2290,7 +2290,7 @@ $(libtool_1): $(ltmain_sh)
$(libtoolize_1): $(libtoolize_in)
$(AM_V_GEN)$(update_mans) libtoolize
-install-data-local: $(lt_Makefile_in)
+install-data-local: $(lt_Makefile_in) install-scripts-local
@$(NORMAL_INSTALL)
-rm -rf '$(DESTDIR)$(pkgdatadir)'/*
@list='$(pkgmacro_files)'; for p in $$list; do \
@@ -2318,8 +2318,15 @@ install-data-local: $(lt_Makefile_in)
echo " $(INSTALL_DATA) '$(ltdldir)/$$p' '$(DESTDIR)$(pkgdatadir)/$$p'"; \
$(INSTALL_DATA) "$(ltdldir)/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \
done
- $(SCRIPT_ENV) '$(inline_source)' libtoolize > '$(DESTDIR)$(bindir)/libtoolize';
- -chmod a+x '$(DESTDIR)$(pkgdatadir)/configure' '$(DESTDIR)$(bindir)/libtoolize'
+ chmod a+x '$(DESTDIR)$(pkgdatadir)/configure'
+
+install-scripts-local: $(lt_Makefile_in)
+ @p=`echo libtoolize |sed -e '$(transform)'`; \
+ echo " $(SCRIPT_ENV) '$(inline_source)' libtoolize > '$(DESTDIR)$(bindir)/$$p'"; \
+ d=`echo "$(DESTDIR)$(bindir)/$$p" |$(SED) 's|[^/]*$$||'`; \
+ test -d "$$d" || $(mkinstalldirs) "$$d"; \
+ $(SCRIPT_ENV) '$(inline_source)' libtoolize > "$(DESTDIR)$(bindir)/$$p"; \
+ chmod a+x "$(DESTDIR)$(bindir)/$$p"
$(changelog): FORCE
$(AM_V_GEN)if test -d '$(srcdir)/.git'; then \
$(gitlog_to_changelog) --amend=$(git_log_fix) \
@@ -2366,8 +2373,9 @@ uninstall-hook:
echo " rm -f '$(DESTDIR)$(aclocaldir)/$$f'"; \
rm -f "$(DESTDIR)$(aclocaldir)/$$f"; \
done
- @echo " rm -f '$(DESTDIR)$(bindir)/libtoolize'"; \
- rm -f '$(DESTDIR)$(bindir)/libtoolize'
+ @p=`echo libtoolize |sed -e '$(transform)'`; \
+ echo " rm -f '$(DESTDIR)$(bindir)/$$p'"; \
+ rm -f "$(DESTDIR)$(bindir)/$$p"
$(testsuite): $(package_m4) $(TESTSUITE_AT) Makefile.am
$(AM_V_GEN)$(AUTOTEST) -I '$(srcdir)' -I '$(srcdir)/tests' $(TESTSUITE_AT) -o '$@'
|