c3579f1baf
by default, since the ruby 1.8 version now has a ruby18 explicit FLAVOR.
35 lines
841 B
Makefile
35 lines
841 B
Makefile
# $OpenBSD: Makefile,v 1.16 2012/09/23 16:57:35 jeremy Exp $
|
|
|
|
COMMENT = execute commands in parallel on multiple remote machines
|
|
|
|
DISTNAME = capistrano-2.5.9
|
|
REVISION = 6
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = http://www.capify.org/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = net/ruby-net-ssh,${MODRUBY_FLAVOR} \
|
|
net/ruby-net-sftp,${MODRUBY_FLAVOR} \
|
|
net/ruby-net-scp,${MODRUBY_FLAVOR} \
|
|
net/ruby-net-ssh-gateway,${MODRUBY_FLAVOR} \
|
|
devel/ruby-highline,${MODRUBY_FLAVOR}
|
|
|
|
REGRESS_DEPENDS = devel/ruby-mocha,${MODRUBY_FLAVOR}
|
|
|
|
do-regress:
|
|
@cd ${WRKBUILD}/test && ${RUBY} -I../lib \
|
|
-e 'ARGV.each { |f| load f unless f =~ /^-/ }' *.rb
|
|
|
|
.include <bsd.port.mk>
|