ec11577107
Given the current state of OS X compilers, the original fails_with behavior is becoming less useful, mostly resulting in build failures each time the compiler is updated. So make the following changes: When a build is specified, we retain the old behavior: switch compilers if the available compiler is <= the build, don't switch if it is > the build. When no build is specified, unconditionally switch compilers, and don't output the advice message. This allows us to mark formulae as perpetually failing, avoiding the need to update formulae each time a new compiler build is made available. As a bonus, this makes the logic much easier to reason about. Closes Homebrew/homebrew#18175.
67 lines
1.9 KiB
Ruby
67 lines
1.9 KiB
Ruby
require 'formula'
|
|
|
|
class Dpkg < Formula
|
|
homepage 'http://en.wikipedia.org/wiki/Dpkg'
|
|
url 'http://ftp.debian.org/debian/pool/main/d/dpkg/dpkg_1.15.8.13.tar.bz2'
|
|
sha1 'd0b9386742f966345a23c3daa0391b37fa837a3f'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'gnu-tar'
|
|
|
|
fails_with :clang do
|
|
cause 'cstdlib:142:3: error: declaration conflicts with target of using declaration already in scope'
|
|
end
|
|
|
|
# Fixes the PERL_LIBDIR.
|
|
# Uses Homebrew-install gnu-tar instead of bsd tar.
|
|
def patches; DATA; end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-compiler-warnings",
|
|
"--disable-linker-optimisations",
|
|
"--disable-compiler-optimisations",
|
|
"--without-start-stop-daemon"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
This installation of dpkg is not configured to install software, so
|
|
commands such as `dpkg -i`, `dpkg --configure` will fail.
|
|
EOS
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/configure b/configure
|
|
index a4e8516..de7f226 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -8180,9 +8180,9 @@ else
|
|
$as_echo "no" >&6; }
|
|
fi
|
|
|
|
-PERL_LIBDIR=$($PERL -MConfig -e 'my $r = $Config{vendorlibexp};
|
|
- $r =~ s/$Config{vendorprefixexp}/\$(prefix)/;
|
|
- print $r')
|
|
+PERL_LIBDIR=$($PERL -MConfig -e 'my $r = $Config{sitelib};
|
|
+ $r =~ s/$Config{sitelib}/\$(prefix)/;
|
|
+ print $r')
|
|
|
|
for ac_prog in pod2man
|
|
do
|
|
diff --git a/lib/dpkg/dpkg.h b/lib/dpkg/dpkg.h
|
|
index ba6066c..89a66ba 100644
|
|
--- a/lib/dpkg/dpkg.h
|
|
+++ b/lib/dpkg/dpkg.h
|
|
@@ -97,7 +97,7 @@
|
|
#define DPKG "dpkg"
|
|
#define DEBSIGVERIFY "/usr/bin/debsig-verify"
|
|
|
|
-#define TAR "tar"
|
|
+#define TAR "gnutar"
|
|
#define RM "rm"
|
|
#define FIND "find"
|
|
#define DIFF "diff"
|