ea385cb391
be used with multiple Ruby versions simultaneously without CONFLICTing with each other. Main difference is that SHAREDIR, EGDIR, and the helper scripts using RUBY_PKGPREFIX and RUBY_SUFFIX, where applicable. The rcvar will be ruby_redmine${RUBY_PKGPREFIX} now. Discussed with MAINTAINER some time last quarter. Redmine is a flexible project management web application. Written using the Ruby on Rails framework, it is cross-platform and cross-database. Redmine is open source and released under the terms of the GNU General Public License v2 (GPL). Some of the main features of Redmine are: Multiple projects support Flexible role based access control Flexible issue tracking system Gantt chart and calendar News, documents & files management Feeds & email notifications Per project wiki Per project forums Time tracking Custom fields for issues, time-entries, projects and users SCM integration (SVN, CVS, Git, Mercurial, Bazaar and Darcs) Issue creation via email Multiple LDAP authentication support User self-registration support Multilanguage support Multiple databases support
15 lines
262 B
Text
15 lines
262 B
Text
#!@SH@
|
|
#
|
|
# $NetBSD: INSTALL,v 1.1 2015/07/05 23:55:25 rodent Exp $
|
|
|
|
WWWGRP="@WWWGRP@"
|
|
WWWOWN="@WWWOWN@"
|
|
RM_DIR="@PREFIX@/@RM_DIR@"
|
|
|
|
case "${STAGE}" in
|
|
POST-INSTALL)
|
|
cd ${RM_DIR} &&
|
|
${CHOWN} -R ${WWWOWN} ${RM_DIR} &&
|
|
${CHGRP} -R ${WWWGRP} ${RM_DIR}
|
|
;;
|
|
esac
|