6799d5f20c
- The formula claims to depend on homebrew's gnu-tar package, but then uses OSX's bundled gnutar, rather than homebrew's gnutar. On older OSX machines, this breaks, as dpkg 1.17 depends on tar >= 1.23, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642802 - dpkg-scanpackages fails, since md5sum, sha1sum, and sha256sum don't exist. So replace the invocations with OSX's md5 and shasum tools. Signed-Off-By: Drew Fisher <zarvox@zarvox.org> Closes Homebrew/homebrew#22019. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
116 lines
3.8 KiB
Ruby
116 lines
3.8 KiB
Ruby
require 'formula'
|
|
|
|
class Dpkg < Formula
|
|
homepage 'https://wiki.debian.org/Teams/Dpkg'
|
|
url 'http://ftp.debian.org/debian/pool/main/d/dpkg/dpkg_1.17.1.tar.xz'
|
|
sha1 'c94b33573806cf9662c5a6f2bbae64900113a538'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xz' => :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-dselect",
|
|
"--disable-linker-optimisations",
|
|
"--disable-start-stop-daemon",
|
|
"--disable-update-alternatives"
|
|
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 5d91530..dd2ca11 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -8388,9 +8388,7 @@ if test "$PERL" = "no" || test ! -x "$PERL"; then
|
|
fi
|
|
# Let the user override the variable.
|
|
if test -z "$PERL_LIBDIR"; then
|
|
-PERL_LIBDIR=$($PERL -MConfig -e 'my $r = $Config{vendorlibexp};
|
|
- $r =~ s/$Config{vendorprefixexp}/\$(prefix)/;
|
|
- print $r')
|
|
+PERL_LIBDIR="$prefix/perl"
|
|
fi
|
|
|
|
|
|
diff --git a/lib/dpkg/dpkg.h b/lib/dpkg/dpkg.h
|
|
index c0f633d..b692806 100644
|
|
--- a/lib/dpkg/dpkg.h
|
|
+++ b/lib/dpkg/dpkg.h
|
|
@@ -108,7 +108,7 @@ DPKG_BEGIN_DECLS
|
|
#define DPKG "dpkg"
|
|
#define DEBSIGVERIFY "/usr/bin/debsig-verify"
|
|
|
|
-#define TAR "tar"
|
|
+#define TAR "gtar"
|
|
#define RM "rm"
|
|
#define CAT "cat"
|
|
#define FIND "find"
|
|
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
|
|
index f83adff..d2b5043 100644
|
|
--- a/scripts/Makefile.am
|
|
+++ b/scripts/Makefile.am
|
|
@@ -117,7 +117,7 @@ nobase_dist_perllib_DATA = \
|
|
man3_MANS =
|
|
|
|
do_perl_subst = $(AM_V_GEN) \
|
|
- sed -e "s:^\#![[:space:]]*/usr/bin/perl:\#!$(PERL):" \
|
|
+ sed -e "s:^\#![[:space:]]*/usr/bin/perl:\#!$(PERL) -I$(PERL_LIBDIR):" \
|
|
-e "s:\$$CONFDIR[[:space:]]*=[[:space:]]*['\"][^'\"]*['\"]:\$$CONFDIR='$(pkgconfdir)':" \
|
|
-e "s:\$$ADMINDIR[[:space:]]*=[[:space:]]*['\"][^'\"]*['\"]:\$$ADMINDIR='$(admindir)':" \
|
|
-e "s:\$$LIBDIR[[:space:]]*=[[:space:]]*['\"][^'\"]*['\"]:\$$LIBDIR='$(pkglibdir)':" \
|
|
diff --git a/scripts/Makefile.in b/scripts/Makefile.in
|
|
index 754488e..8b233fb 100644
|
|
--- a/scripts/Makefile.in
|
|
+++ b/scripts/Makefile.in
|
|
@@ -486,7 +486,7 @@ nobase_dist_perllib_DATA = \
|
|
# Keep it even if empty to have man3dir correctly set
|
|
man3_MANS =
|
|
do_perl_subst = $(AM_V_GEN) \
|
|
- sed -e "s:^\#![[:space:]]*/usr/bin/perl:\#!$(PERL):" \
|
|
+ sed -e "s:^\#![[:space:]]*/usr/bin/perl:\#!$(PERL) -I$(PERL_LIBDIR):" \
|
|
-e "s:\$$CONFDIR[[:space:]]*=[[:space:]]*['\"][^'\"]*['\"]:\$$CONFDIR='$(pkgconfdir)':" \
|
|
-e "s:\$$ADMINDIR[[:space:]]*=[[:space:]]*['\"][^'\"]*['\"]:\$$ADMINDIR='$(admindir)':" \
|
|
-e "s:\$$LIBDIR[[:space:]]*=[[:space:]]*['\"][^'\"]*['\"]:\$$LIBDIR='$(pkglibdir)':" \
|
|
|
|
diff --git a/scripts/Dpkg/Checksums.pm b/scripts/Dpkg/Checksums.pm
|
|
index 4a64fd1..bb19f59 100644
|
|
--- a/scripts/Dpkg/Checksums.pm
|
|
+++ b/scripts/Dpkg/Checksums.pm
|
|
@@ -50,15 +50,15 @@ about supported checksums.
|
|
|
|
my $CHECKSUMS = {
|
|
md5 => {
|
|
- program => [ 'md5sum' ],
|
|
+ program => [ 'md5', '-q' ],
|
|
regex => qr/[0-9a-f]{32}/,
|
|
},
|
|
sha1 => {
|
|
- program => [ 'sha1sum' ],
|
|
+ program => [ 'shasum', '-a', '1' ],
|
|
regex => qr/[0-9a-f]{40}/,
|
|
},
|
|
sha256 => {
|
|
- program => [ 'sha256sum' ],
|
|
+ program => [ 'shasum', '-a', '256' ],
|
|
regex => qr/[0-9a-f]{64}/,
|
|
},
|
|
};
|