ActiveRecord-JDBC is a database adapter for Rails' ActiveRecord component

that can be used with JRuby.
It allows use of virtually any JDBC-compliant database with your
JRuby on Rails application.

WWW: http://rubyforge.org/projects/jruby-extras/

PR:		ports/126326
Submitted by:	Alexander Logvinov <ports at logvinov,com>
This commit is contained in:
Martin Wilke 2008-08-07 21:24:02 +00:00
parent 04d61a8ea3
commit a77a5fd167
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=218210
4 changed files with 39 additions and 0 deletions

View File

@ -554,6 +554,7 @@
SUBDIR += ruby-search-namazu
SUBDIR += ruby-sqlite
SUBDIR += rubygem-activerecord
SUBDIR += rubygem-activerecord-jdbc-adapter
SUBDIR += rubygem-memcache-client
SUBDIR += rubygem-postgres
SUBDIR += rubygem-rrdtool

View File

@ -0,0 +1,29 @@
# Ports collection makefile for: rubygem-activerecord-jdbc-adapter
# Date created: 22 July 2008
# Whom: Alexander Logvinov <ports@logvinov,com>
#
# $FreeBSD$
PORTNAME= activerecord-jdbc-adapter
PORTVERSION= 0.8.2
CATEGORIES= databases rubygems java
MASTER_SITES= RF
MASTER_SITE_SUBDIR= jruby-extras
MAINTAINER= ports@logvinov.com
COMMENT= JDBC adapter for ActiveRecord, for use within JRuby on Rails
RUN_DEPENDS= jruby:${PORTSDIR}/lang/jruby
USE_RUBY= yes
USE_RUBYGEMS= yes
post-install:
@${ECHO} ${GEM_CACHE} > ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_DOC_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},${GEM_DOC_DIR},' >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},${GEM_LIB_DIR},' >> ${TMPPLIST}
@${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},@dirrm ${GEM_LIB_DIR},' >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_DOC_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},@dirrm ${GEM_DOC_DIR},' >> ${TMPPLIST}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rubygem/activerecord-jdbc-adapter-0.8.2.gem) = 85b0126618d69594307aa03f1048e69a
SHA256 (rubygem/activerecord-jdbc-adapter-0.8.2.gem) = adc7a54fcef588ac914ea2ff0ab7d96c31e8d19c86c71477cded7b21a74308d8
SIZE (rubygem/activerecord-jdbc-adapter-0.8.2.gem) = 91648

View File

@ -0,0 +1,6 @@
ActiveRecord-JDBC is a database adapter for Rails' ActiveRecord component
that can be used with JRuby.
It allows use of virtually any JDBC-compliant database with your
JRuby on Rails application.
WWW: http://rubyforge.org/projects/jruby-extras/