diff options
author | Steve Wills <swills@FreeBSD.org> | 2011-10-03 02:14:26 +0800 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2011-10-03 02:14:26 +0800 |
commit | 8e1764510af80a01225a2b8c3f59803115db9b12 (patch) | |
tree | 4973d6d6261d3832b5b09d4746ace09b344e0453 | |
parent | 68a3645015f12a8929e03480d6d035587350821d (diff) | |
download | freebsd-ports-gnome-8e1764510af80a01225a2b8c3f59803115db9b12.tar.gz freebsd-ports-gnome-8e1764510af80a01225a2b8c3f59803115db9b12.tar.zst freebsd-ports-gnome-8e1764510af80a01225a2b8c3f59803115db9b12.zip |
Amalgalite embeds the SQLite database
engine in a ruby extension. There is no
need to install SQLite separately.
WWW: http://copiousfreetime.rubyforge.org/amalgalite/
PR: ports/158316
Submitted by: Eric Freeman <freebsdports@chillibear.com>
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/rubygem-amalgalite/Makefile | 25 | ||||
-rw-r--r-- | databases/rubygem-amalgalite/distinfo | 2 | ||||
-rw-r--r-- | databases/rubygem-amalgalite/pkg-descr | 5 |
4 files changed, 33 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index edfb5994ba1a..22f3747edca1 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -756,6 +756,7 @@ SUBDIR += rubygem-activerecord SUBDIR += rubygem-activerecord-jdbc-adapter SUBDIR += rubygem-activerecord-jdbcmysql-adapter + SUBDIR += rubygem-amalgalite SUBDIR += rubygem-arel SUBDIR += rubygem-bigrecord SUBDIR += rubygem-couchrest diff --git a/databases/rubygem-amalgalite/Makefile b/databases/rubygem-amalgalite/Makefile new file mode 100644 index 000000000000..cd6e3feba4e1 --- /dev/null +++ b/databases/rubygem-amalgalite/Makefile @@ -0,0 +1,25 @@ +# Ports collection makefile for: rubygem-amalgalite +# Date created: 26 June 2011 +# Whom: Eric Freeman <freebsdports@chillibear.com> +# +# $FreeBSD$ +# + +PORTNAME= amalgalite +PORTVERSION= 1.1.2 +CATEGORIES= databases rubygems +MASTER_SITES= RG + +MAINTAINER= freebsdports@chillibear.com +COMMENT= Embeds the SQLite database engine in a ruby extension + +RUN_DEPENDS= rubygem-arrayfields>=4.7.4:${PORTSDIR}/devel/rubygem-arrayfields \ + rubygem-fastercsv>=1.5.4:${PORTSDIR}/devel/rubygem-fastercsv + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/amalgalite-pack + +.include <bsd.port.mk> diff --git a/databases/rubygem-amalgalite/distinfo b/databases/rubygem-amalgalite/distinfo new file mode 100644 index 000000000000..64e60da13005 --- /dev/null +++ b/databases/rubygem-amalgalite/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/amalgalite-1.1.2.gem) = 133d013d02608ba5713e1c2db8b7280b1e5a5378925ace14ea133e911bc72b22 +SIZE (rubygem/amalgalite-1.1.2.gem) = 1351168 diff --git a/databases/rubygem-amalgalite/pkg-descr b/databases/rubygem-amalgalite/pkg-descr new file mode 100644 index 000000000000..e3dbde45caf1 --- /dev/null +++ b/databases/rubygem-amalgalite/pkg-descr @@ -0,0 +1,5 @@ +Amalgalite embeds the SQLite database +engine in a ruby extension. There is no +need to install SQLite separately. + +WWW: http://copiousfreetime.rubyforge.org/amalgalite/ |