svn commit: r380267 - in head/devel: . rubygem-ffi-compiler

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Mar 2 14:30:15 UTC 2015


Author: sunpoet
Date: Mon Mar  2 14:30:13 2015
New Revision: 380267
URL: https://svnweb.freebsd.org/changeset/ports/380267
QAT: https://qat.redports.org/buildarchive/r380267/

Log:
  - Add rubygem-ffi-compiler 0.1.3
  
  ffi-compiler is a ruby library for automating compilation of native libraries
  for use with ffi. To use, define your own ruby->native API using ffi, implement
  it in C, then use ffi-compiler to compile it.
  
  WWW: https://github.com/ffi/ffi-compiler
  RG:  https://rubygems.org/gems/ffi-compiler

Added:
  head/devel/rubygem-ffi-compiler/
  head/devel/rubygem-ffi-compiler/Makefile   (contents, props changed)
  head/devel/rubygem-ffi-compiler/distinfo   (contents, props changed)
  head/devel/rubygem-ffi-compiler/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Mar  2 14:29:30 2015	(r380266)
+++ head/devel/Makefile	Mon Mar  2 14:30:13 2015	(r380267)
@@ -4440,6 +4440,7 @@
     SUBDIR += rubygem-fastthread
     SUBDIR += rubygem-fattr
     SUBDIR += rubygem-ffi
+    SUBDIR += rubygem-ffi-compiler
     SUBDIR += rubygem-ffi-yajl
     SUBDIR += rubygem-file-tail
     SUBDIR += rubygem-filemagic

Added: head/devel/rubygem-ffi-compiler/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-ffi-compiler/Makefile	Mon Mar  2 14:30:13 2015	(r380267)
@@ -0,0 +1,22 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ffi-compiler
+PORTVERSION=	0.1.3
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Ruby FFI library
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	rubygem-ffi>=1.0.0:${PORTSDIR}/devel/rubygem-ffi \
+		rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake
+
+USE_RAKE=	yes
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-ffi-compiler/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-ffi-compiler/distinfo	Mon Mar  2 14:30:13 2015	(r380267)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/ffi-compiler-0.1.3.gem) = c46ca2599c43a1f553550a5e861902fd457eff1eb824ef20d41d23dd08dc1728
+SIZE (rubygem/ffi-compiler-0.1.3.gem) = 13824

Added: head/devel/rubygem-ffi-compiler/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-ffi-compiler/pkg-descr	Mon Mar  2 14:30:13 2015	(r380267)
@@ -0,0 +1,6 @@
+ffi-compiler is a ruby library for automating compilation of native libraries
+for use with ffi. To use, define your own ruby->native API using ffi, implement
+it in C, then use ffi-compiler to compile it.
+
+WWW: https://github.com/ffi/ffi-compiler
+RG:  https://rubygems.org/gems/ffi-compiler


More information about the svn-ports-head mailing list