aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorHongli Lai (Phusion)2013-06-20 14:57:46 +0200
committerMike McQuaid2013-07-19 18:24:37 -0700
commita32377e50b80d31d118a1944947e79afd7f8288d (patch)
tree745ea1b5c24cca29d8bf12394badaa6aa90b47e4 /Library
parent354b4d942a58095cc258e555d22742c4b53ea93f (diff)
downloadhomebrew-a32377e50b80d31d118a1944947e79afd7f8288d.tar.bz2
passenger 4.0.5 (new formula)
Closes #19981. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/nginx.rb14
-rw-r--r--Library/Formula/passenger.rb46
2 files changed, 59 insertions, 1 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb
index d35d4392a..d0f6d8a3b 100644
--- a/Library/Formula/nginx.rb
+++ b/Library/Formula/nginx.rb
@@ -21,6 +21,7 @@ class Nginx < Formula
option 'with-gunzip', 'Compile with support for gunzip module'
depends_on 'pcre'
+ depends_on 'passenger' if build.with? 'passenger'
# SPDY needs openssl >= 1.0.1 for NPN; see:
# https://tools.ietf.org/agenda/82/slides/tls-3.pdf
# http://www.openssl.org/news/changelog.html
@@ -119,7 +120,16 @@ class Nginx < Formula
end
end
- def caveats; <<-EOS.undent
+ def passenger_caveats; <<-EOS.undent
+
+ To activate Phusion Passenger, add this to #{etc}/nginx/nginx.conf:
+ passenger_root #{HOMEBREW_PREFIX}/opt/passenger
+ passenger_ruby /usr/bin/ruby
+ EOS
+ end
+
+ def caveats
+ s = <<-EOS.undent
Docroot is: #{HOMEBREW_PREFIX}/var/www
The default port has been set to 8080 so that nginx can run without sudo.
@@ -129,6 +139,8 @@ class Nginx < Formula
You will then need to run nginx as root: `sudo nginx`.
EOS
+ s << passenger_caveats if build.include? 'with-passenger'
+ s
end
def plist; <<-EOS.undent
diff --git a/Library/Formula/passenger.rb b/Library/Formula/passenger.rb
new file mode 100644
index 000000000..7bd9892c6
--- /dev/null
+++ b/Library/Formula/passenger.rb
@@ -0,0 +1,46 @@
+require 'formula'
+
+class Passenger < Formula
+ homepage 'https://www.phusionpassenger.com/'
+ url 'https://phusion-passenger.googlecode.com/files/passenger-4.0.5.tar.gz'
+ sha1 '4c1e12dae0c972e1498f2dae258929d8fa4ba42d'
+ head 'https://github.com/FooBarWidget/passenger.git'
+
+ depends_on 'curl'
+
+ def install
+ rake "apache2"
+ rake "nginx"
+ cp_r Dir["*"], prefix, :preserve => true
+
+ # The various scripts in bin cannot correctly locate their root directory
+ # when invoked as symlinks in /usr/local/bin. We create wrapper scripts
+ # to solve this problem.
+ mv bin, libexec
+ mkdir bin
+ Dir[libexec/"*"].each do |orig_script|
+ name = File.basename(orig_script)
+ (bin/name).write <<-EOS.undent
+ #!/bin/sh
+ exec #{orig_script} "$@"
+ EOS
+ end
+ end
+
+ def caveats; <<-EOS.undent
+ To activate Phusion Passenger for Apache, create /etc/apache2/other/passenger.conf:
+ LoadModule passenger_module #{HOMEBREW_PREFIX}/opt/passenger/libout/apache2/mod_passenger.so
+ PassengerRoot #{HOMEBREW_PREFIX}/opt/passenger
+ PassengerDefaultRuby /usr/bin/ruby
+
+ To activate Phusion Passenger for Nginx, run:
+ brew install nginx --with-passenger
+ EOS
+ end
+
+ test do
+ if `#{HOMEBREW_PREFIX}/bin/passenger-config --root`.strip != prefix.to_s
+ raise "Invalid root path"
+ end
+ end
+end