summaryrefslogtreecommitdiff
path: root/community/passenger
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/passenger
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/passenger')
-rw-r--r--community/passenger/PKGBUILD36
-rw-r--r--community/passenger/passenger.install32
2 files changed, 0 insertions, 68 deletions
diff --git a/community/passenger/PKGBUILD b/community/passenger/PKGBUILD
deleted file mode 100644
index 0acb70cea..000000000
--- a/community/passenger/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 94307 2013-07-19 15:21:45Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-
-pkgname=passenger
-pkgver=4.0.10
-pkgrel=1
-pkgdesc="mod_rails passenger"
-arch=('i686' 'x86_64')
-url="http://www.modrails.com"
-#http://rubyforge.org/frs/?group_id=5873
-license=('GPL')
-depends=('ruby' 'ruby-rack' 'curl')
-makedepends=('apache')
-install=passenger.install
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
-md5sums=('a30ec12f12923aedd42ed2747903f65a')
-
-build(){
- cd $srcdir/passenger-release-$pkgver
-
-# sed -i 's/env python/env python2/' lib/phusion_passenger/wsgi/request_handler.py
-
- ./bin/passenger-install-apache2-module -a
- rake nginx
-}
-
-package() {
- cd $srcdir/passenger-release-$pkgver
-
- mkdir -p $pkgdir/usr/lib/passenger/
- cp -R * $pkgdir/usr/lib/passenger/
-
- mkdir -p $pkgdir/usr/lib/httpd/modules
- ln -sf /usr/lib/passenger/buildout/apache2/mod_passenger.so $pkgdir/usr/lib/httpd/modules/mod_passenger.so
-}
diff --git a/community/passenger/passenger.install b/community/passenger/passenger.install
deleted file mode 100644
index 6faaab1b6..000000000
--- a/community/passenger/passenger.install
+++ /dev/null
@@ -1,32 +0,0 @@
-post_install() {
- echo "Please edit your Apache configuration file, and add these lines:"
- echo ""
- echo "LoadModule passenger_module /usr/lib/httpd/modules/mod_passenger.so"
- echo "PassengerRoot /usr/lib/passenger"
- echo "PassengerRuby /usr/bin/ruby"
- echo ""
- echo "After you restart Apache, you are ready to deploy any number of Ruby on Rails"
- echo "applications on Apache, without any further Ruby on Rails-specific"
- echo "configuration!"
- echo ""
- echo ""
- echo "Deploying a Ruby on Rails application: an example"
- echo ""
- echo "Suppose you have a Ruby on Rails application in /somewhere. Add a virtual host"
- echo "to your Apache configuration file, and set its DocumentRoot to"
- echo "/somewhere/public, like this:"
- echo ""
- echo "<VirtualHost *:80>"
- echo " ServerName www.yourhost.com"
- echo " DocumentRoot /somewhere/public # <-- be sure to point to 'public'!"
- echo " <Directory /somewhere/public>"
- echo " AllowOverride all # <-- relax Apache security settings"
- echo " Options -MultiViews # <-- MultiViews must be turned off"
- echo " </Directory>"
- echo "</VirtualHost>"
- echo ""
- echo "And that's it! You may also want to check the Users Guide for security and"
- echo "optimization tips, troubleshooting and other useful information:"
- echo ""
- echo "/usr/lib/passenger/doc/Users guide Apache.html"
-}