7af4bac0db
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). Features 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 This package contains all required Ruby gems in it. Th code in Makefile should be moved to lang/ruby/*.mk later.
15 lines
261 B
Text
15 lines
261 B
Text
#!@SH@
|
|
#
|
|
# $NetBSD: INSTALL,v 1.1 2015/01/03 18:55:43 ryoon 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
|