diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-09-06 04:14:01 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-09-06 04:14:01 +0800 |
commit | aa5a6453bb4b8ebef535bf1e54f914c67d970096 (patch) | |
tree | 6ff3c46d6d76348777d60123cbb415ff54c7d3af | |
parent | 8ea0b8dc59a8f2de9e1c99b18572887e308b5d78 (diff) | |
download | freebsd-ports-gnome-aa5a6453bb4b8ebef535bf1e54f914c67d970096.tar.gz freebsd-ports-gnome-aa5a6453bb4b8ebef535bf1e54f914c67d970096.tar.zst freebsd-ports-gnome-aa5a6453bb4b8ebef535bf1e54f914c67d970096.zip |
rails3 gem no longer has a lib/ dir
which breaks devel/ruby-gems specification
and thus rdoc.
Reported by: several
`
-rw-r--r-- | www/rubygem-rails/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/www/rubygem-rails/Makefile b/www/rubygem-rails/Makefile index 59cecb11cba2..048fdeefbae6 100644 --- a/www/rubygem-rails/Makefile +++ b/www/rubygem-rails/Makefile @@ -20,6 +20,11 @@ RUN_DEPENDS= rubygem-activesupport>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-act rubygem-railties>=${PORTVERSION}:${PORTSDIR}/www/rubygem-railties \ rubygem-bundler>=1.0.0:${PORTSDIR}/sysutils/rubygem-bundler +# XXX: rails3 gem no longer has a lib/ dir +# XXX: which breaks devel/ruby-gems specification. +# XXX: and thus rdoc +NOPORTDOCS=yes + USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes @@ -55,11 +60,4 @@ RUN_DEPENDS+= rubygem-mongre_clusterl>=1.0.5:${PORTSDIR}/www/rubygem-mongrel_clu RUN_DEPENDS+= rubygem-passenger>=2.2.15:${PORTSDIR}/www/rubygem-passenger .endif -# XXX: overridden here b/c rails gem no longer has a lib/ dir -# XXX: which breaks devel/ruby-gems -do-install: -.for _D in ${GEMFILES} - -${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${DISTDIR}/${DIST_SUBDIR}/${_D} -- --build-args ${CONFIGURE_ARGS} -.endfor - .include <bsd.port.mk> |