mirror of
https://github.com/openwrt/packages.git
synced 2026-01-11 04:04:50 +00:00
Digest can use OpenSSL or ruby internal implementation of hash functions. The first uses less disk space but requires openssl, that is relatively big. As internal hash implementations are not too much bigger than openssl version, it is compiled by default. A new config option can change it to use OpenSSL instead. As digest is independent from openssl, ruby-digest was created as a new pkgs. Adds pkgs: - ruby-digest (from ruby-openssl) Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
617 lines
18 KiB
Makefile
617 lines
18 KiB
Makefile
#
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
#
|
|
# To Do:
|
|
# - split up encodings
|
|
# - allow selection of either native or pure version of a library where supported
|
|
# +-> some native libraries are probably only supported if ruby-dl is enabled
|
|
# anything else?
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ruby
|
|
PKG_VERSION:=2.1.2
|
|
PKG_RELEASE:=9
|
|
|
|
PKG_LIBVER:=2.1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://cache.ruby-lang.org/pub/ruby/$(PKG_LIBVER)/
|
|
PKG_MD5SUM:=ed9b8565bdeccb401d628ec8d54a0774
|
|
PKG_MAINTAINER:=Luiz Angelo Daros de Luca <luizluca@gmail.com>
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
PKG_LICENSE_FILE:=COPYING
|
|
|
|
PKG_BUILD_DEPENDS:=ruby/host
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/ruby/Default
|
|
SUBMENU:=Ruby
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Ruby scripting language
|
|
URL:=http://www.ruby-lang.org/
|
|
endef
|
|
|
|
define Package/ruby/Default/description
|
|
Ruby is the interpreted scripting language for quick and easy
|
|
object-oriented programming. It has many features to process text files
|
|
and to do system management tasks (as in perl). It is simple,
|
|
straight-forward, and extensible.
|
|
endef
|
|
|
|
define Package/ruby
|
|
$(call Package/ruby/Default)
|
|
TITLE+= (interpreter)
|
|
DEPENDS:=+libruby
|
|
endef
|
|
|
|
define Package/ruby/description
|
|
$(call Package/ruby/Default/description)
|
|
endef
|
|
|
|
define Package/libruby
|
|
$(call Package/ruby/Default)
|
|
SUBMENU:=
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE+= (shared library)
|
|
DEPENDS+= +libpthread +librt +libgmp
|
|
endef
|
|
|
|
# Ongoing work to break up ruby's standard library into coherent pieces
|
|
# with minimal dependencies between them
|
|
|
|
define Package/ruby-core
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby standard libraries
|
|
DEPENDS:=ruby +libdb47 +libffi
|
|
endef
|
|
|
|
define Package/ruby-bigdecimal
|
|
$(call Package/ruby/Default)
|
|
TITLE+= Arbitrary-precision decimal floating-point library
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-cgi
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby CGI support toolkit
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-digest
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby Digest Library
|
|
DEPENDS:=ruby +RUBY_DIGEST_USE_OPENSSL:libopenssl
|
|
endef
|
|
|
|
define Package/ruby-digest/config
|
|
|
|
config RUBY_DIGEST_USE_OPENSSL
|
|
bool "Use OpenSSL functions for ruby digest hash functions"
|
|
depends on PACKAGE_ruby-digest
|
|
help
|
|
Ruby can use OpenSSL hash functions or compile alternative implementations. Using
|
|
OpenSSL saves about 30KBytes (less when compressed) but requires OpenSSL (that
|
|
is way bigger than that). However, if OpenSSL is already needed by another usage,
|
|
as ruby-openssl or any other non ruby package, it is better to mark this option.
|
|
default n
|
|
|
|
endef
|
|
|
|
define Package/ruby-dl
|
|
$(call Package/ruby/Default)
|
|
TITLE+= (dynamic linker support) (adds 5MB+)
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-enc
|
|
$(call Package/ruby/Default)
|
|
TITLE+= (character re-coding library) (adds 2MB+)
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-erb
|
|
$(call Package/ruby/Default)
|
|
TITLE+= (embedded interpreter)
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-gdbm
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby support for gdbm
|
|
DEPENDS:=ruby +libgdbm
|
|
endef
|
|
|
|
define Package/ruby-gems
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby gems packet management
|
|
DEPENDS:=ruby +ruby-yaml +ruby-zlib +ruby-openssl +ruby-webrick +ruby-erb
|
|
endef
|
|
|
|
define Package/ruby-io-console
|
|
$(call Package/ruby/Default)
|
|
TITLE+= Console interface
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-irb
|
|
$(call Package/ruby/Default)
|
|
TITLE+= (interactive shell)
|
|
DEPENDS:=ruby +ruby-core
|
|
endef
|
|
|
|
define Package/ruby-json
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby support for JSON
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-minitest
|
|
$(call Package/ruby/Default)
|
|
TITLE+= minitest bundled with Ruby
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-nkf
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby Network Kanji Filter
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-openssl
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby support for openssl
|
|
DEPENDS:=ruby +libopenssl
|
|
endef
|
|
|
|
define Package/ruby-psych
|
|
$(call Package/ruby/Default)
|
|
TITLE+=YAML parser and emitter
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-rdoc
|
|
$(call Package/ruby/Default)
|
|
TITLE+= (documentation generator)
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-rake
|
|
$(call Package/ruby/Default)
|
|
TITLE+=Ruby Rake (make replacement)
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-readline
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby support for readline
|
|
DEPENDS:=ruby +libncurses +libreadline
|
|
endef
|
|
|
|
define Package/ruby-rexml
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby XML toolkit
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-rss
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby RSS toolkit
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-testunit
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby Test Unit toolkit
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-webrick
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby Web server toolkit
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-xmlrpc
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby XML-RPC toolkit
|
|
DEPENDS:=ruby
|
|
endef
|
|
|
|
define Package/ruby-yaml
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby YAML toolkit
|
|
DEPENDS:=ruby +ruby-psych
|
|
endef
|
|
|
|
define Package/ruby-zlib
|
|
$(call Package/ruby/Default)
|
|
TITLE:=Ruby support for zlib
|
|
DEPENDS:=ruby +zlib
|
|
endef
|
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
--disable-install-doc \
|
|
--disable-install-rdoc \
|
|
--disable-install-capi \
|
|
--with-static-linked-ext \
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--disable-rpath \
|
|
--enable-ipv6 \
|
|
--disable-install-doc \
|
|
--disable-install-capi \
|
|
--with-ruby-version=minor \
|
|
--with-iconv-dir=$(ICONV_PREFIX) \
|
|
|
|
ifndef CONFIG_RUBY_DIGEST_USE_OPENSSL
|
|
CONFIGURE_ARGS += \
|
|
--with-bundled-sha1\
|
|
--with-bundled-md5\
|
|
--with-bundled-rmd160\
|
|
--with-bundled-sha2 \
|
|
|
|
endif
|
|
|
|
TARGET_LDFLAGS += -L$(PKG_BUILD_DIR)
|
|
|
|
MAKE_FLAGS += \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
SHELL="/bin/bash"
|
|
|
|
define Package/ruby/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/vendor_ruby/$(PKG_LIBVER)
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/site_ruby/$(PKG_LIBVER)
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ruby $(1)/usr/lib/ruby/ruby$(PKG_LIBVER)-bin
|
|
$(INSTALL_BIN) ./files/ruby $(1)/usr/bin/ruby
|
|
sed -i -e "s%@RUBY_LIBPATH@%/usr/lib/ruby/$(PKG_LIBVER)%" $(1)/usr/bin/ruby
|
|
sed -i -e "s%@RUBY_BINPATH@%/usr/lib/ruby/ruby$(PKG_LIBVER)-bin%" $(1)/usr/bin/ruby
|
|
endef
|
|
|
|
define Package/libruby/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libruby.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/ruby-core/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby $(1)/usr/lib/
|
|
rm -rf \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/curses.so \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/gdbm.so \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/kconv.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/nkf.so \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/bigdecimal.so \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/bigdecimal/ \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/digest \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/digest.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/digest \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/digest.so \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/openssl \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/openssl.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/openssl.so \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/drb/ssl.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/net/https.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/webrick/ssl.rb \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/dl.so \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/enc \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/readline.so \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/irb/completion.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/irb/ext/save-history.rb \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/io/console.so \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/io/console/ \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/zlib.so \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/erb.rb \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/json.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/json \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/json \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/irb.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/irb \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/minitest/ \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/psych \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/psych.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/psych.so \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rdoc.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rdoc \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rake.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rake \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/ubygems.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rubygems.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rubygems \
|
|
$(1)/usr/lib/ruby/gems \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/cgi.rb \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/cgi \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rexml \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rss \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/rss.rb \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/test \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/webrick \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/webrick.rb \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/xmlrpc \
|
|
\
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/yaml \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/yaml.rb \
|
|
|
|
find $(1) -name '*.h' | xargs rm -f
|
|
endef
|
|
|
|
define Package/ruby-bigdecimal/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/bigdecimal.so \
|
|
usr/lib/ruby/$(PKG_LIBVER)/bigdecimal/ \
|
|
usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/bigdecimal-*.gemspec \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-cgi/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/cgi $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/cgi.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
define Package/ruby-digest/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/digest \
|
|
usr/lib/ruby/$(PKG_LIBVER)/digest.rb \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/digest.so \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/digest/* \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-dl/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/dl.so \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-enc/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/enc \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-erb/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/erb $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/erb.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
define Package/ruby-gdbm/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/gdbm.so \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-gems/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/gem $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/ubygems.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rubygems.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rubygems $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/doc
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/cache
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/extensions
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/build_info
|
|
endef
|
|
|
|
define Package/ruby-io-console/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/io/console.so \
|
|
usr/lib/ruby/$(PKG_LIBVER)/io/console/ \
|
|
usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/io-console-*.gemspec \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-irb/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/irb $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/irb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/irb.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
define Package/ruby-json/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/json.rb \
|
|
usr/lib/ruby/$(PKG_LIBVER)/json \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/json \
|
|
usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/json-*.gemspec \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
rm -rf \
|
|
$(1)/usr/lib/ruby/$(PKG_LIBVER)/psych/json
|
|
endef
|
|
|
|
define Package/ruby-minitest/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/minitest/ \
|
|
usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/minitest-*.gemspec \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-nkf/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/kconv.rb \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/nkf.so \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-openssl/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/openssl \
|
|
usr/lib/ruby/$(PKG_LIBVER)/openssl.rb \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/openssl.so \
|
|
usr/lib/ruby/$(PKG_LIBVER)/drb/ssl.rb \
|
|
usr/lib/ruby/$(PKG_LIBVER)/net/https.rb \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-psych/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/psych \
|
|
usr/lib/ruby/$(PKG_LIBVER)/psych.rb \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/psych.so \
|
|
usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/psych-*.gemspec \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-rdoc/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rdoc $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ri $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rdoc.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rdoc $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/rdoc-*.gemspec \
|
|
$(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems/rdoc-* \
|
|
$(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems/
|
|
endef
|
|
|
|
define Package/ruby-rake/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rake $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rake.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rake $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/rake-*.gemspec \
|
|
$(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems/rake-* $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems/
|
|
endef
|
|
|
|
define Package/ruby-readline/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/readline.so \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-rexml/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rexml $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
|
|
define Package/ruby-rss/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rss $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/rss.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
define Package/ruby-testunit/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/testrb $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/test $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/test-unit-*.gemspec $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/specifications/default/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems/test-unit-* $(1)/usr/lib/ruby/gems/$(PKG_LIBVER)/gems/
|
|
endef
|
|
|
|
define Package/ruby-webrick/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/webrick $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/webrick.rb $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
define Package/ruby-xmlrpc/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ruby/$(PKG_LIBVER)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/$(PKG_LIBVER)/xmlrpc $(1)/usr/lib/ruby/$(PKG_LIBVER)/
|
|
endef
|
|
|
|
define Package/ruby-yaml/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/yaml \
|
|
usr/lib/ruby/$(PKG_LIBVER)/yaml.rb \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Package/ruby-zlib/install
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
usr/lib/ruby/$(PKG_LIBVER)/*/zlib.so \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
|
|
. \
|
|
) | ( cd $(1); $(TAR) -xf - )
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ruby))
|
|
$(eval $(call BuildPackage,libruby))
|
|
$(eval $(call BuildPackage,ruby-core))
|
|
$(eval $(call BuildPackage,ruby-bigdecimal))
|
|
$(eval $(call BuildPackage,ruby-cgi))
|
|
$(eval $(call BuildPackage,ruby-digest))
|
|
$(eval $(call BuildPackage,ruby-dl))
|
|
$(eval $(call BuildPackage,ruby-enc))
|
|
$(eval $(call BuildPackage,ruby-erb))
|
|
$(eval $(call BuildPackage,ruby-gdbm))
|
|
$(eval $(call BuildPackage,ruby-gems))
|
|
$(eval $(call BuildPackage,ruby-json))
|
|
$(eval $(call BuildPackage,ruby-io-console))
|
|
$(eval $(call BuildPackage,ruby-irb))
|
|
$(eval $(call BuildPackage,ruby-minitest))
|
|
$(eval $(call BuildPackage,ruby-nkf))
|
|
$(eval $(call BuildPackage,ruby-openssl))
|
|
$(eval $(call BuildPackage,ruby-psych))
|
|
$(eval $(call BuildPackage,ruby-rake))
|
|
$(eval $(call BuildPackage,ruby-rdoc))
|
|
$(eval $(call BuildPackage,ruby-readline))
|
|
$(eval $(call BuildPackage,ruby-rexml))
|
|
$(eval $(call BuildPackage,ruby-rss))
|
|
$(eval $(call BuildPackage,ruby-testunit))
|
|
$(eval $(call BuildPackage,ruby-webrick))
|
|
$(eval $(call BuildPackage,ruby-xmlrpc))
|
|
$(eval $(call BuildPackage,ruby-yaml))
|
|
$(eval $(call BuildPackage,ruby-zlib))
|
|
$(eval $(call HostBuild))
|