diff options
| author | Misty De Meo | 2012-09-18 12:26:32 -0500 |
|---|---|---|
| committer | Misty De Meo | 2012-09-18 16:46:43 -0500 |
| commit | 9f3838c0c254ed61267091cdff4066c7bf09e78a (patch) | |
| tree | 5ef51922d104af4d82d1ce13906f9815bd44b3a5 /Library/Formula | |
| parent | 48ce3c4de297242c955a6acd9e08267c6bd9f9e3 (diff) | |
| download | homebrew-9f3838c0c254ed61267091cdff4066c7bf09e78a.tar.bz2 | |
dwm, dmenu, rxvt-unicode, xdotool: depends_on :x11
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dmenu.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/dwm.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/rxvt-unicode.rb | 1 | ||||
| -rw-r--r-- | Library/Formula/xdotool.rb | 2 |
4 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/dmenu.rb b/Library/Formula/dmenu.rb index ab101aa7c..588c1fe78 100644 --- a/Library/Formula/dmenu.rb +++ b/Library/Formula/dmenu.rb @@ -6,6 +6,8 @@ class Dmenu < Formula sha1 '70c1a13b950b7b0cb1bc35e30c6e861a78359953' head 'http://hg.suckless.org/dmenu/' + depends_on :x11 + def install system "make", "PREFIX=#{prefix}", "install" end diff --git a/Library/Formula/dwm.rb b/Library/Formula/dwm.rb index c70a580b4..a6e366a29 100644 --- a/Library/Formula/dwm.rb +++ b/Library/Formula/dwm.rb @@ -6,6 +6,8 @@ class Dwm < Formula sha1 '35346f873a27f219ae266594b3690407f95d06ef' head 'http://hg.suckless.org/dwm' + depends_on :x11 + def install # The dwm default quit keybinding Mod1-Shift-q collides with # the Mac OS X Log Out shortcut in the Apple menu. diff --git a/Library/Formula/rxvt-unicode.rb b/Library/Formula/rxvt-unicode.rb index 5c74c300d..d373c8874 100644 --- a/Library/Formula/rxvt-unicode.rb +++ b/Library/Formula/rxvt-unicode.rb @@ -8,6 +8,7 @@ class RxvtUnicode < Formula option "disable-iso14755", "Disable ISO 14775 Shift+Ctrl hotkey" depends_on 'pkg-config' => :build + depends_on :x11 def patches # Patch hunks 1 and 2 allow perl support to compile on Intel. diff --git a/Library/Formula/xdotool.rb b/Library/Formula/xdotool.rb index a1038deeb..b0a8d6876 100644 --- a/Library/Formula/xdotool.rb +++ b/Library/Formula/xdotool.rb @@ -7,6 +7,8 @@ class Xdotool < Formula depends_on 'pkg-config' => :build + depends_on :x11 + def install system "make", "PREFIX=#{prefix}", "INSTALLMAN=#{man}", "install" end |
