diff options
author | minskim <minskim@pkgsrc.org> | 2009-04-07 07:35:44 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2009-04-07 07:35:44 +0000 |
commit | 70c173909975ecc83eedc79a2439f23c91957f60 (patch) | |
tree | bfe0e06dafb9a7f37b7056dd28d053e77cdd13f2 /misc/rubygems/Makefile | |
parent | b779a409502c88432da462bcee468bd14c609b69 (diff) | |
download | pkgsrc-70c173909975ecc83eedc79a2439f23c91957f60.tar.gz |
Update rubygems to 1.3.1.
New features since 1.2.0:
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
stdout is not a TTY, except with --both.
* Added Gem.find_files, allows a gem to discover features provided by other
gems.
* Added pre/post (un)install hooks for packagers of RubyGems. (Not for gems
themselves).
* RubyGems now installs gems into ~/.gem if GEM_HOME is not writable. Use
--no-user-install command-line switch to disable this behavior.
* Fetching specs for update now uses If-Modified-Since requests.
* RubyGems now updates the ri cache when the rdoc gem is installed and
documentation is generated.
Diffstat (limited to 'misc/rubygems/Makefile')
-rw-r--r-- | misc/rubygems/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/rubygems/Makefile b/misc/rubygems/Makefile index b3a5b99c231..29a23bb7cde 100644 --- a/misc/rubygems/Makefile +++ b/misc/rubygems/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.22 2008/09/15 08:43:44 taca Exp $ +# $NetBSD: Makefile,v 1.23 2009/04/07 07:35:44 minskim Exp $ -DISTNAME= rubygems-1.2.0 +DISTNAME= rubygems-1.3.1 CATEGORIES= misc ruby -MASTER_SITES= http://rubyforge.org/frs/download.php/38646/ +MASTER_SITES= http://rubyforge.org/frs/download.php/45905/ EXTRACT_SUFX= .tgz MAINTAINER= minskim@NetBSD.org @@ -57,7 +57,7 @@ INSTALL_TARGET= install INSTALL_TARGET+= --vendor INSTALL_TARGET+= --no-format-executable # "bin/gem", not "bin/gem18" .if ${_USE_DESTDIR} != "no" -INSTALL_TARGET+= --destdir=${DESTDIR:Q} +INSTALL_TARGET+= --destdir=${DESTDIR:Q}${PREFIX:Q} .endif # rubygem's setup.rb is not the typical setup.rb -- manually run the |