mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-29 19:43:26 +01:00
43 lines
996 B
Bash
43 lines
996 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
USE_RUBY="ruby22 ruby23 ruby24 ruby25"
|
|
|
|
inherit ruby-ng
|
|
|
|
DESCRIPTION="Web-based application for effective reporting writing"
|
|
HOMEPAGE="https://www.itdefence.asia"
|
|
#SRC_URI="${P}.tar.gz"
|
|
|
|
LICENSE="none"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE="+mysql"
|
|
|
|
RDEPEND="mysql? ( virtual/mysql )"
|
|
|
|
ruby_add_rdepend "dev-ruby/rake
|
|
dev-ruby/rails:4.2
|
|
dev-ruby/rack:1.6
|
|
dev-ruby/rubygems
|
|
dev-ruby/will_paginate
|
|
dev-ruby/jquery-rails:4
|
|
dev-ruby/ckeditor_rails
|
|
dev-ruby/activerecord-session_store
|
|
dev-ruby/protected_attributes
|
|
dev-ruby/similar_text
|
|
mysql? ( dev-ruby/mysql2:0.3 )"
|
|
|
|
#fix me: group :assets
|
|
ruby_add_bdepend "
|
|
|| ( dev-ruby/coffee-rails:4.1 dev-ruby/coffee-rails:4.2 )
|
|
"
|
|
|
|
each_ruby_prepare() {
|
|
if [ -f Gemfile ]; then
|
|
MSF_ROOT="." BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die
|
|
MSF_ROOT="." BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die
|
|
fi
|
|
}
|