From 073d0b95fbcbcebc6cb2b128ca86bc038cd5cf0f Mon Sep 17 00:00:00 2001 From: Stefan Schüßler Date: Wed, 4 Apr 2012 12:31:13 +0200 Subject: gbdfed 1.6 gbdfed is a font editor for bitmap fonts: http://sofia.nmsu.edu/~mleisher/Software/gbdfed/ Signed-off-by: Adam Vandenberg --- Library/Formula/gbdfed.rb | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Library/Formula/gbdfed.rb diff --git a/Library/Formula/gbdfed.rb b/Library/Formula/gbdfed.rb new file mode 100644 index 000000000..a37376e2b --- /dev/null +++ b/Library/Formula/gbdfed.rb @@ -0,0 +1,37 @@ +require 'formula' + +class Gbdfed < Formula + homepage 'http://sofia.nmsu.edu/~mleisher/Software/gbdfed/' + url 'http://sofia.nmsu.edu/~mleisher/Software/gbdfed/gbdfed-1.6.tar.gz' + md5 '5a1668adfc2afa435feda5e3737ceaee' + + depends_on 'pkg-config' => :build + depends_on 'gtk+' + + # Fixes compilation error with gtk+ per note on the project homepage. + def patches + DATA + end + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end + +__END__ +diff --git a/Makefile.in b/Makefile.in +index b482958..10a528e 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -28,8 +28,7 @@ CC = @CC@ + CFLAGS = @XX_CFLAGS@ @CFLAGS@ + + DEFINES = @DEFINES@ -DG_DISABLE_DEPRECATED \ +- -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \ +- -DGTK_DISABLE_DEPRECATED ++ -DGDK_PIXBUF_DISABLE_DEPRECATED + + SRCS = bdf.c \ + bdfcons.c \ -- cgit v1.2.3