aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gtk-chtheme.rb
diff options
context:
space:
mode:
authorMike McQuaid2014-12-25 22:16:29 +0000
committerMike McQuaid2014-12-27 11:09:32 +0000
commit43882a26b5f15da065ccb32dac0b78622ba026e1 (patch)
tree4acb8242bc9701bae5ea3b921b9e93121ae862cf /Library/Formula/gtk-chtheme.rb
parent995ee81399c5d056d26cfe531fd43dad3408e603 (diff)
downloadhomebrew-43882a26b5f15da065ccb32dac0b78622ba026e1.tar.bz2
Migrate some formula with hard-X11 dependencies.
We have the homebrew-x11 tap for this reason so let's migrate everything without any reverse dependencies. Ideally I'd also like to migrate everything that's :recommended and the GTK formulae through there too (or to a dedicated homebrew-gtk).
Diffstat (limited to 'Library/Formula/gtk-chtheme.rb')
-rw-r--r--Library/Formula/gtk-chtheme.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/Library/Formula/gtk-chtheme.rb b/Library/Formula/gtk-chtheme.rb
deleted file mode 100644
index 8a94c0d87..000000000
--- a/Library/Formula/gtk-chtheme.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'formula'
-
-class GtkChtheme < Formula
- homepage 'http://plasmasturm.org/code/gtk-chtheme/'
- url 'http://plasmasturm.org/code/gtk-chtheme/gtk-chtheme-0.3.1.tar.bz2'
- sha1 'dbea31f4092877e786fe040fae1374238fada94a'
-
- depends_on 'pkg-config' => :build
- depends_on 'gdk-pixbuf'
- depends_on 'gettext'
- depends_on 'glib'
- depends_on 'gtk+'
- depends_on 'pango'
- depends_on :x11
-
- def install
- # Unfortunately chtheme relies on some deprecated functionality
- # we need to disable errors for it to compile properly
- inreplace 'Makefile', '-DGTK_DISABLE_DEPRECATED', ''
-
- system "make", "PREFIX=#{prefix}", "install"
- end
-end