diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2000-08-07 06:09:19 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2000-08-07 06:09:19 +0000 |
commit | cba1dd73198be0721c05d6097d87a3879a63848e (patch) | |
tree | 6fc5835ecbd36939d8b23ccb55cdb120a17323a6 /math/ruby-bigfloat/Makefile | |
parent | Update to version 2.4 (diff) |
Add Ruby related ports.
devel/ruby-property:
Simple properties scheme for Ruby
lang/ruby-python:
Ruby extension library for embedding Python in Ruby
math/ruby-bigfloat:
Variable precision floating library for Ruby
Whipped on by: ade :>
Diffstat (limited to '')
-rw-r--r-- | math/ruby-bigfloat/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/math/ruby-bigfloat/Makefile b/math/ruby-bigfloat/Makefile new file mode 100644 index 000000000000..aab0c9307217 --- /dev/null +++ b/math/ruby-bigfloat/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: Ruby-BigFloat +# Date created: 7 Aug 2000 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= bigfloat +PORTVERSION= 1.1.3 +CATEGORIES= math # ruby +MASTER_SITES= http://www.tinyforest.gr.jp/ruby/ +PKGNAMEPREFIX= ruby- + +MAINTAINER= knu@FreeBSD.org + +BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby +RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby + +NO_WRKSUBDIR= yes +PLIST_SUB= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}" + +RUBY= ${LOCALBASE}/bin/ruby +RUBY_VER= 1.4 +RUBY_ARCH= ${ARCH}-freebsd${OSREL} + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/ruby/bigfloat/ja + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/bigfloat_en.html ${PREFIX}/share/doc/ruby/bigfloat + ${INSTALL_DATA} ${WRKSRC}/bigfloat.html ${PREFIX}/share/doc/ruby/bigfloat/ja +.endif + +.include <bsd.port.mk> |