f6cbc7c26e
Railties is responsible for gluing the parts of Ruby on Rails together. Overall, it: * handles the entire bootstrapping process for a Rails application; * manages the rails command line interface; * provides the core Rails generators; ok landry
26 lines
604 B
Makefile
26 lines
604 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/08 21:29:22 jeremy Exp $
|
|
|
|
COMMENT= glues the Ruby on Rails framework together
|
|
|
|
VERSION= 3.0.3
|
|
DISTNAME= railties-${VERSION}
|
|
CATEGORIES= www
|
|
|
|
# MIT License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= lang/ruby
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ${MODRUBY_RAKE_DEPENDS} \
|
|
devel/ruby-activesupport,${MODRUBY_FLAVOR}=${VERSION} \
|
|
devel/ruby-actionpack,${MODRUBY_FLAVOR}=${VERSION} \
|
|
sysutils/ruby-thor,${MODRUBY_FLAVOR}>=0.14.4,<0.15
|
|
|
|
CONFIGURE_STYLE=ruby gem
|
|
|
|
.include <bsd.port.mk>
|