diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-11-07 13:28:04 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-11-07 13:28:04 +0000 |
commit | 93d27d46bd0009b4639924257047666c3bafad6c (patch) | |
tree | c6e835b59e55ef72a2a809c1d50a82197c365308 /www-apache/passenger | |
parent | Stable on amd64 wrt bug #344327 (diff) | |
download | gentoo-2-93d27d46bd0009b4639924257047666c3bafad6c.tar.gz gentoo-2-93d27d46bd0009b4639924257047666c3bafad6c.tar.bz2 gentoo-2-93d27d46bd0009b4639924257047666c3bafad6c.zip |
Respect LDFLAGS. Install executables in /usr/lib/exec, not /usr/lib.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'www-apache/passenger')
-rw-r--r-- | www-apache/passenger/ChangeLog | 8 | ||||
-rw-r--r-- | www-apache/passenger/files/passenger-3.0.0-ldflags.patch | 13 | ||||
-rw-r--r-- | www-apache/passenger/passenger-3.0.0-r1.ebuild | 82 |
3 files changed, 102 insertions, 1 deletions
diff --git a/www-apache/passenger/ChangeLog b/www-apache/passenger/ChangeLog index c2007f26a2e6..8d877df6cc2d 100644 --- a/www-apache/passenger/ChangeLog +++ b/www-apache/passenger/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apache/passenger # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/passenger/ChangeLog,v 1.28 2010/11/06 11:08:26 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/passenger/ChangeLog,v 1.29 2010/11/07 13:28:04 graaff Exp $ + +*passenger-3.0.0-r1 (07 Nov 2010) + + 07 Nov 2010; Hans de Graaff <graaff@gentoo.org> + +passenger-3.0.0-r1.ebuild, +files/passenger-3.0.0-ldflags.patch: + Respect LDFLAGS. Install executables in /usr/lib/exec, not /usr/lib. *passenger-2.2.15-r1 (06 Nov 2010) diff --git a/www-apache/passenger/files/passenger-3.0.0-ldflags.patch b/www-apache/passenger/files/passenger-3.0.0-ldflags.patch new file mode 100644 index 000000000000..dd378addf7a5 --- /dev/null +++ b/www-apache/passenger/files/passenger-3.0.0-ldflags.patch @@ -0,0 +1,13 @@ +--- build/config.rb.~1~ 2010-11-07 11:46:22.257690348 +0100 ++++ build/config.rb 2010-11-07 12:41:40.601438803 +0100 +@@ -25,7 +25,7 @@ + + # Extra linker flags that should always be passed to the linker. + # Should be included last in the command string, even after PlatformInfo.portability_ldflags. +-EXTRA_LDFLAGS = "" ++EXTRA_LDFLAGS = "#{ENV['LDFLAGS']}" + + # Whether to use the vendored libev or the system one. +-USE_VENDORED_LIBEV = boolean_option("USE_VENDORED_LIBEV", true) +\ No newline at end of file ++USE_VENDORED_LIBEV = boolean_option("USE_VENDORED_LIBEV", true) diff --git a/www-apache/passenger/passenger-3.0.0-r1.ebuild b/www-apache/passenger/passenger-3.0.0-r1.ebuild new file mode 100644 index 000000000000..31137b07b5e3 --- /dev/null +++ b/www-apache/passenger/passenger-3.0.0-r1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/passenger/passenger-3.0.0-r1.ebuild,v 1.1 2010/11/07 13:28:04 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18" + +inherit apache-module flag-o-matic ruby-ng + +DESCRIPTION="Passenger (a.k.a. mod_rails) makes deployment of Ruby on Rails applications a breeze" +HOMEPAGE="http://modrails.com/" +SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc" + +ruby_add_rdepend " + >=dev-ruby/fastthread-1.0.1 + >=dev-ruby/rack-1.0.0" + +RDEPEND="${RDEPEND} >=dev-libs/libev-3.90" +DEPEND="${DEPEND} + >=dev-libs/libev-3.90 + doc? ( app-text/asciidoc )" + +ruby_add_rdepend ">=dev-ruby/daemon_controller-0.2.5 dev-ruby/file-tail" + +APACHE2_MOD_CONF="30_mod_${PN}-2.0.1 30_mod_${PN}" +APACHE2_MOD_DEFINE="PASSENGER" + +need_apache2_2 + +pkg_setup() { + use debug && append-flags -DPASSENGER_DEBUG +} + +all_ruby_prepare() { + epatch "${FILESDIR}"/${P}-gentoo.patch + epatch "${FILESDIR}"/${P}-ldflags.patch + + # Use sed here so that we can dynamically set the documentation directory. + sed -i -e "s:/usr/share/doc/phusion-passenger:/usr/share/doc/${P}:" \ + -e "s:/usr/lib/apache2/modules/mod_passenger.so:${APACHE_MODULESDIR}/mod_passenger.so:" \ + -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \ + lib/phusion_passenger.rb || die + sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" ext/common/ResourceLocator.h || die + + # Don't install a tool that won't work in our setup. + sed -i -e '/passenger-install-apache2-module/d' lib/phusion_passenger/packaging.rb || die + rm -f bin/passenger-install-apache2-module || die "Unable to remove unneeded install script." + + # Make sure we use the system-provided version. + rm -rf ext/libev || die "Unable to remove vendored libev." +} + +each_ruby_compile() { + append-flags -fno-strict-aliasing + + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + USE_VENDORED_LIBEV="no" LIBEV_LIBS="-lev" \ + rake apache2 native_support || die "rake failed" + + if use doc; then + rake doc || die "rake doc failed" + fi +} + +each_ruby_install() { + DISTDIR="${D}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + USE_VENDORED_LIBEV="no" LIBEV_LIBS="-lev" \ + rake fakeroot || die "rake failed" + + # TODO: this will create a mess when multiple RUBY_TARGETS have been + # selected. + APACHE2_MOD_FILE="${S}/ext/apache2/mod_${PN}.so" + apache-module_src_install +} |