DataMapper is a Object Relational Mapper written in Ruby. The goal
is to create an ORM which is fast, thread-safe and feature-rich with ActiveRecord-compatibility. WWW: http://datamapper.rubyforge.org/
This commit is contained in:
parent
8dfd861090
commit
2492a5b9b2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=224901
4 changed files with 47 additions and 0 deletions
|
@ -570,6 +570,7 @@
|
|||
SUBDIR += rubygem-activerecord
|
||||
SUBDIR += rubygem-activerecord-jdbc-adapter
|
||||
SUBDIR += rubygem-activerecord-jdbcmysql-adapter
|
||||
SUBDIR += rubygem-datamapper
|
||||
SUBDIR += rubygem-jdbc-mysql
|
||||
SUBDIR += rubygem-memcache-client
|
||||
SUBDIR += rubygem-postgres
|
||||
|
|
37
databases/rubygem-datamapper/Makefile
Normal file
37
databases/rubygem-datamapper/Makefile
Normal file
|
@ -0,0 +1,37 @@
|
|||
# New ports collection makefile for: rubygem-datamapper
|
||||
# Date created: 28, Dec 2008
|
||||
# Whom: Martin Wilke <miwi@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= datamapper
|
||||
PORTVERSION= 0.3.2
|
||||
CATEGORIES= databases rubygems
|
||||
MASTER_SITES= RF
|
||||
|
||||
MAINTAINER= miwi@FreeBSD.org
|
||||
COMMENT= Fast, thread-safe, object-relational mapper
|
||||
|
||||
BUILD_DEPENDS= rubygem-rspec>0:${PORTSDIR}/devel/rubygem-rspec \
|
||||
rubygem-validatable>0:${PORTSDIR}/devel/rubygem-validatable \
|
||||
rubygem-json>0:${PORTSDIR}/devel/rubygem-json \
|
||||
rubygem-fastthread>0:${PORTSDIR}/devel/rubygem-fastthread
|
||||
RUN_DEPENDS= rubygem-rspec>0:${PORTSDIR}/devel/rubygem-rspec \
|
||||
rubygem-validatable>0:${PORTSDIR}/devel/rubygem-validatable \
|
||||
rubygem-json>0:${PORTSDIR}/devel/rubygem-json \
|
||||
rubygem-fastthread>0:${PORTSDIR}/devel/rubygem-fastthread
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBYGEMS= yes
|
||||
USE_RAKE= 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>
|
3
databases/rubygem-datamapper/distinfo
Normal file
3
databases/rubygem-datamapper/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (rubygem/datamapper-0.3.2.gem) = 7f95b550642d0c6f3b2334f9200e1bda
|
||||
SHA256 (rubygem/datamapper-0.3.2.gem) = c13377f33734336cdd5ee90bf0d7dc65a124dbce0db0cfd3b02cb7f1f93b8272
|
||||
SIZE (rubygem/datamapper-0.3.2.gem) = 115712
|
6
databases/rubygem-datamapper/pkg-descr
Normal file
6
databases/rubygem-datamapper/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
DataMapper is a Object Relational Mapper written in Ruby. The goal
|
||||
is to create an ORM which is fast, thread-safe and feature-rich with
|
||||
ActiveRecord-compatibility.
|
||||
|
||||
|
||||
WWW: http://datamapper.rubyforge.org/
|
Loading…
Reference in a new issue