# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 USE_RUBY="ruby20 ruby21" inherit ruby-ng user DESCRIPTION="A Redmine plugin which makes configuring your own Git hosting easy" HOMEPAGE="https://github.com/jbox-web/redmine_git_hosting" SRC_URI="https://github.com/jbox-web/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="" ruby_add_rdepend "dev-ruby/asciidoctor dev-ruby/creole dev-ruby/dalli dev-ruby/github-markup >=dev-ruby/gitolite-rugged-1.2.0 dev-ruby/org-ruby >=dev-ruby/redcarpet-3.1.2 dev-ruby/redis dev-ruby/redcloth dev-ruby/wikicloth dev-ruby/haml-rails www-apps/redmine_bootstrap_kit >=www-apps/redmine-3" # dev-ruby/gitlab-grack ruby_add_bdepend ">=www-apps/redmine-3" REDMINE_DIR="/var/lib/redmine" #pkg_setup() { # enewgroup redmine # enewuser redmine -1 -1 "${REDMINE_DIR}" redmine #} all_ruby_prepare() { sed -i -e "/mount Grack/ s/^/#/" config/routes.rb || die } all_ruby_install() { dodoc README.md rm .gitignore README.md LICENSE || die dodir "${REDMINE_DIR}"/plugins/${PN} insinto "${REDMINE_DIR}"/plugins/${PN} doins -r . fowners -R redmine:redmine "${REDMINE_DIR}"/plugins/${PN} } pkg_postinst() { einfo elog "Please run emerge --config =${PF}" elog "Further information:" elog "https://github.com/jbox-web/redmine_git_hosting/wiki/Step-by-step-installation-instructions" einfo } pkg_config() { local RAILS_ENV=${RAILS_ENV:-production} if [ ! -L /usr/bin/ruby ]; then eerror "/usr/bin/ruby is not a valid symlink to any ruby implementation." eerror "Please update it via `eselect ruby`" die fi if [[ $RUBY_TARGETS != *$( eselect ruby show | awk 'NR==2' | tr -d ' ' )* ]]; then eerror "/usr/bin/ruby is currently not included in redmine's ruby targets: ${RUBY_TARGETS}." eerror "Please update it via `eselect ruby`" die fi local RUBY=${RUBY:-ruby} einfo "Upgrading the plugin migrations." cd "${EPREFIX}${REDMINE_DIR}" || die RAILS_ENV="${RAILS_ENV}" ${RUBY} -S rake redmine:plugins:migrate || die if [ ! -e "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa ]; then einfo "Generating SSH-Keypair for Redmine user" ssh-keygen -N '' -f "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa || die chown redmine:redmine "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa\ "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa.pub || die touch "${EPREFIX}${REDMINE_DIR}"/log/git_hosting.log chown redmine:redmine "${EPREFIX}${REDMINE_DIR}"/log/git_hosting.log || die fi }