summaryrefslogtreecommitdiff
path: root/misc/rubygems
diff options
context:
space:
mode:
authorjlam <jlam>2008-03-12 04:06:15 +0000
committerjlam <jlam>2008-03-12 04:06:15 +0000
commit1d7c5a53af6283a56608a75758ce27b1603c95a8 (patch)
treeafad78e87b4791dcaf44b9e6d3715064bada6992 /misc/rubygems
parente0d9e72b0f1b8c5a81beb3eb45c7c4c15cacf8cf (diff)
downloadpkgsrc-1d7c5a53af6283a56608a75758ce27b1603c95a8.tar.gz
+ Improve the documentation in the header of the rubygem.mk file.
+ Add a build dependency on rake, which is used to build a new gem file. Define RAKE to be the path to the installed rake binary. + Add "ruby" as a package category by default. + Define MASTER_SITES to a default value pointing to the main remote gem repository: http://gems.rubyforge.net/gems/. + Add a "do-gem-extract" target that extracts the files from the downloaded gem and into ${WRKSRC}. This allows us to patch or otherwise manipulate the files that are part of the gem that is to be installed. + Add a "do-gem-build" target that builds a new local gem from the contents of ${WRKSRC} using the provided Rakefile. This local gem which contains all pkgsrc modifications will be the one installed on the system. + Modify "do-gem-install" target to install from the new local gem created by the "do-gem-build" target. XXX The do-gem-install target still needs to use the new --buildroot XXX option to allow DESTDIR-style installations.
Diffstat (limited to 'misc/rubygems')
-rw-r--r--misc/rubygems/rubygem.mk97
1 files changed, 72 insertions, 25 deletions
diff --git a/misc/rubygems/rubygem.mk b/misc/rubygems/rubygem.mk
index bd547904675..c3b7ad67335 100644
--- a/misc/rubygems/rubygem.mk
+++ b/misc/rubygems/rubygem.mk
@@ -1,39 +1,49 @@
-# $NetBSD: rubygem.mk,v 1.2 2008/03/11 22:11:32 jlam Exp $
+# $NetBSD: rubygem.mk,v 1.3 2008/03/12 04:06:15 jlam Exp $
#
# This Makefile fragment is intended to be included by packages that build
# and install Ruby gems.
#
-# The following target is provided by this file:
+# Package-settable variables:
#
-# do-gem-install installed as a dependency of the do-install target
-# it install the Ruby Gem ${GEMFILE}.
+# GEM_NAME
+# The name of the gem to install. The default value is ${DISTNAME}.
#
-# do-build Mostly phony target, but necessary for various
-# pkgsrc framework to work, in case the Gem to install
-# contains sources to compile.
+# GEMFILE
+# The complete filename of the gem to install. It defaults to
+# ${DISTNAME}.gem.
#
-# The following variables may be set prior to including this file:
+# Variables defined in this file:
#
-# GEM_NAME The name of the Gem to install, it defaults
-# to ${DISTNAME}.
+# GEM_DOCDIR
+# The path to the directory in the local gem repository that holds
+# the documentation for the installed gem.
#
-# GEMFILE The filename, in ${_DISTDIR}, of the Gem to install.
+# GEM_HOME
+# The path to the local gem repository.
#
-# If the Gem to install does not contain sources to compile NO_BUILD
-# should be defined.
+# GEM_LIBDIR
+# The path to the directory in the local gem repository that holds
+# the contents of the installed gem.
#
-# The name, PKGNAME, of the package installing the Gem should probably
-# use '${RUBYGEM_PKGPREFIX}-' as a prefix.
+# RAKE
+# The path to the ``rake'' binary.
+#
+# RUBYGEM_PKGPREFIX
+# The recommended prefix for the PKGNAME.
+#
+# RUBYGEM
+# The path to the rubygems ``gem'' script.
#
# Include this early in case some of its target are needed
.include "../../lang/ruby/modules.mk"
-# Build and run-time dependency on rubygem
+# Build and run-time dependencies.
#
# We need rubygems>=1.0.1nb1 to actually build the package, but the
# resulting installed gem can run with older versions of rubygems.
#
+BUILD_DEPENDS+= rake-[0-9]*:../../devel/rake
BUILD_DEPENDS+= rubygems>=1.0.1nb1:../../misc/rubygems
DEPENDS+= rubygems>=0.8.7:../../misc/rubygems
@@ -44,6 +54,9 @@ GEMFILE?= ${DISTFILES}
GEMFILE?= ${DISTNAME}${EXTRACT_SUFX}
.endif
+CATEGORIES+= ruby
+MASTER_SITES?= http://gems.rubyforge.org/gems/
+
EXTRACT_SUFX?= .gem
EXTRACT_ONLY?= # empty
@@ -59,6 +72,8 @@ RUBYGEM_PKGPREFIX= ${RUBY_PKGPREFIX}-gem
# RUBYGEM holds the path to RubyGems' gem command
EVAL_PREFIX+= RUBYGEM_PREFIX=rubygems
+EVAL_PREFIX+= RAKE_PREFIX=rake
+RAKE= ${RAKE_PREFIX}/bin/rake
RUBYGEM= ${RUBYGEM_PREFIX}/bin/gem
# PLIST support
@@ -76,15 +91,47 @@ PRINT_PLIST_AWK+= /^@dirrm ${GEM_HOME:S|${PREFIX}/||:S|/|\\/|g}(\/(gems|cache|do
PRINT_PLIST_AWK+= /^(@dirrm )?${GEM_HOME:S|${PREFIX}/||:S|/|\\/|g}/ \
{ gsub(/${GEM_HOME:S|${PREFIX}/||:S|/|\\/|g}/, "$${GEM_HOME}"); print; next; }
-# Define a build target so that tools, buildink, etc... frameworks are setup
-# in case the Gem contains sources to build
-.if !target(do-build)
-do-build:
- ${RUN}mkdir ${WRKSRC}
-.endif
+###
+### do-gem-extract
+###
+### The do-gem-extract target extracts a standard gem file. A standard
+### gem file contains:
+###
+### data.tar.gz contains the actual files to build, install, etc.
+### metadata.gz YAML specification file
+###
-# Installation target
-do-gem-install:
- ${RUN}${SETENV} ${GEM_ENV} ${RUBYGEM} install --local --no-update-sources --no-ri --install-dir ${PREFIX}/${GEM_HOME} ${_DISTDIR}/${GEMFILE} -- --build-args ${CONFIGURE_ARGS}
+USE_TOOLS+= gzip tar
+
+.PHONY: do-gem-extract
+do-extract: do-gem-extract
+do-gem-extract:
+ ${RUN} mkdir ${WRKSRC}
+ ${RUN} cd ${WRKDIR} && tar xf ${_DISTDIR}/${GEMFILE} data.tar.gz
+ ${RUN} cd ${WRKSRC} && gzip -d < ${WRKDIR}/data.tar.gz | tar xf -
+ ${RUN} rm -f ${WRKDIR}/data.tar.gz
+###
+### do-gem-build
+###
+### The do-gem-build target builds a new local gem from the extracted
+### gem's contents. The new gem as created as ${WRKSRC}/pkg/${GEMFILE}.
+###
+.PHONY: do-gem-build
+do-build: do-gem-build
+do-gem-build:
+ ${RUN} cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${RAKE} gem
+
+###
+### do-gem-install
+###
+### The do-gem-install target installs the local gem in ${WRKDIR} into
+### the gem repository.
+###
+.PHONY: do-gem-install
do-install: do-gem-install
+do-gem-install:
+ ${RUN} ${SETENV} ${INSTALL_ENV} ${MAKE_ENV} ${RUBYGEM} install \
+ --local --no-update-sources \
+ --install-dir ${GEM_HOME} ${WRKSRC}/pkg/${GEMFILE} -- \
+ --build-args ${CONFIGURE_ARGS}