homebrew-core/Formula/gdmap.rb

66 lines
2.0 KiB
Ruby

class Gdmap < Formula
desc "Tool to inspect the used space of folders"
homepage "https://sourceforge.net/projects/gdmap/"
url "https://downloads.sourceforge.net/project/gdmap/gdmap/0.8.1/gdmap-0.8.1.tar.gz"
sha256 "a200c98004b349443f853bf611e49941403fce46f2335850913f85c710a2285b"
revision 1
bottle do
sha256 "a1cb2de04ea76b624f09a4662ae3d65313d7c8a43b3b95110a53429af8cad2b2" => :high_sierra
sha256 "37ace64b950b2d1565728d490e0ed505c1cbdb1a20cf1fa894a4934784a83a18" => :sierra
sha256 "4f48204465a1ce93f84eae2d5f54e2a7d9dad6e9ce5994829590ad14d3640914" => :el_capitan
end
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "glib"
depends_on "gtk+"
# The code depends on some GTK macros that are flagged as deprecated in the brew version of GTK.
# I assume they're not deprecated in normal GTK, because the config file disables deprecated GDK calls.
# The first patch turns off this disablement, making the code work fine as intended
# The second patch is to remove an unused system header import on one of the files.
# This header file doesn't exist in OSX and the program compiles and runs fine without it.
# Filed bug upstream as https://sourceforge.net/p/gdmap/bugs/19/
patch :DATA
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/gdmap", "--help"
end
end
__END__
diff --git a/configure b/configure
index fc7ed80..bb408d3 100755
--- a/configure
+++ b/configure
@@ -8225,7 +8225,7 @@ else
echo "${ECHO_T}yes" >&6; }
:
fi
-UI_CFLAGS="$UI_CFLAGS -DGTK_DISABLE_DEPRECATED"
+#UI_CFLAGS="$UI_CFLAGS -DGTK_DISABLE_DEPRECATED"
diff --git a/src/gui_main.c b/src/gui_main.c
index efe2239..91c2a14 100644
--- a/src/gui_main.c
+++ b/src/gui_main.c
@@ -11,7 +11,6 @@
# include <config.h>
#endif
-#include <sys/vfs.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>