2014-05-19 18:29:26 +00:00
|
|
|
require "formula"
|
2011-12-28 01:30:52 +00:00
|
|
|
|
|
|
|
class Pcb < Formula
|
2014-05-19 18:29:26 +00:00
|
|
|
homepage "http://pcb.geda-project.org/"
|
|
|
|
head "git://git.geda-project.org/pcb.git"
|
|
|
|
url "https://downloads.sourceforge.net/project/pcb/pcb/pcb-20140316/pcb-20140316.tar.gz"
|
|
|
|
sha1 "ec714ff136d1817e500e1a9e654e786883b9501e"
|
|
|
|
|
|
|
|
option "with-doc", "Build the documentation (requires LaTeX)."
|
|
|
|
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "intltool" => :build
|
|
|
|
depends_on "gettext"
|
|
|
|
depends_on "d-bus"
|
|
|
|
depends_on "gtk+"
|
|
|
|
depends_on "gd"
|
|
|
|
depends_on "glib"
|
|
|
|
depends_on "gtkglext"
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2014-05-19 18:29:26 +00:00
|
|
|
depends_on :tex if build.with? "doc"
|
2011-12-28 01:30:52 +00:00
|
|
|
|
2014-05-19 18:29:26 +00:00
|
|
|
conflicts_with "gts", :because => "both install `include/gts.h`"
|
2013-11-15 07:41:38 +00:00
|
|
|
|
2014-03-20 01:21:17 +00:00
|
|
|
patch :DATA
|
2011-12-28 01:30:52 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-21 02:40:53 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
2014-01-11 04:56:23 +00:00
|
|
|
args = ["--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-update-desktop-database",
|
|
|
|
"--disable-update-mime-database"]
|
2014-05-19 18:29:26 +00:00
|
|
|
args << "--disable-doc" if build.without? "doc"
|
2011-12-28 01:30:52 +00:00
|
|
|
|
2014-01-11 04:56:23 +00:00
|
|
|
system "./configure", *args
|
2011-12-28 01:30:52 +00:00
|
|
|
system "make"
|
2014-05-19 18:29:26 +00:00
|
|
|
system "make", "install"
|
2011-12-28 01:30:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# There's a missing define from GLU. Defining this fixes everything up.
|
|
|
|
__END__
|
|
|
|
diff --git a/src/hid/common/hidgl.c b/src/hid/common/hidgl.c
|
|
|
|
index 15273a6..ff73ca7 100644
|
|
|
|
--- a/src/hid/common/hidgl.c
|
|
|
|
+++ b/src/hid/common/hidgl.c
|
|
|
|
@@ -66,6 +66,7 @@
|
|
|
|
#include <dmalloc.h>
|
|
|
|
#endif
|
2014-03-06 20:40:26 +00:00
|
|
|
|
2011-12-28 01:30:52 +00:00
|
|
|
+typedef GLvoid (*_GLUfuncptr)(GLvoid);
|
2014-03-06 20:40:26 +00:00
|
|
|
|
2011-12-28 01:30:52 +00:00
|
|
|
triangle_buffer buffer;
|
|
|
|
float global_depth = 0;
|
|
|
|
|