diff options
author | adrianp <adrianp@pkgsrc.org> | 2004-11-08 19:05:33 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2004-11-08 19:05:33 +0000 |
commit | 5d487fbe78ea9a0c6698cbcd2020b51a5e96c3e5 (patch) | |
tree | 303b9f1ecfd6a27b88baf817d56ee4a30f67f5bf /devel | |
parent | ecb9bd7425f018e24145babe8c7883e4c986820f (diff) | |
download | pkgsrc-5d487fbe78ea9a0c6698cbcd2020b51a5e96c3e5.tar.gz |
Mantis is a web-based bugtracking system. It is written in the PHP scripting
language and requires the MySQL database and a webserver. Mantis has been
installed on Windows, MacOS, OS/2, and a variety of Unix operating systems.
Almost any web browser should be able to function as a client. It is released
under the terms of the GNU General Public License (GPL).
Mantis is free to use and modify. It is free to redistribute as long as you
abide by the distribution terms of the GPL.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/mantis/DESCR | 8 | ||||
-rw-r--r-- | devel/mantis/MESSAGE | 26 | ||||
-rw-r--r-- | devel/mantis/Makefile | 119 | ||||
-rw-r--r-- | devel/mantis/PLIST | 438 | ||||
-rw-r--r-- | devel/mantis/distinfo | 4 | ||||
-rw-r--r-- | devel/mantis/files/mantis.conf | 12 |
6 files changed, 607 insertions, 0 deletions
diff --git a/devel/mantis/DESCR b/devel/mantis/DESCR new file mode 100644 index 00000000000..3f036e5b4b7 --- /dev/null +++ b/devel/mantis/DESCR @@ -0,0 +1,8 @@ +Mantis is a web-based bugtracking system. It is written in the PHP scripting +language and requires the MySQL database and a webserver. Mantis has been +installed on Windows, MacOS, OS/2, and a variety of Unix operating systems. +Almost any web browser should be able to function as a client. It is released +under the terms of the GNU General Public License (GPL). + +Mantis is free to use and modify. It is free to redistribute as long as you +abide by the distribution terms of the GPL. diff --git a/devel/mantis/MESSAGE b/devel/mantis/MESSAGE new file mode 100644 index 00000000000..3518ef7afb2 --- /dev/null +++ b/devel/mantis/MESSAGE @@ -0,0 +1,26 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1.1.1 2004/11/08 19:05:33 adrianp Exp $ + +To complete the setup you will need to read the INSTALL guide in order +to setup mySQL properly. In particular secion 3 of the document deals +with database setup. + +You will need to make Mantis accessible through your HTTP server. +If you are running Apache then you may add the following lines to httpd.conf: + + Include ${PKG_SYSCONFDIR}/httpd/mantis.conf + +to make Mantis accessible through: + + http://www.domain.com/mantis/index.php + +You can also use the following URL to check your installation: + + http://www.domain.com/mantis/admin/index.php + +IMPORTANT SECURITY NOTES: + + * Change your database password from the default and update your + config_inc.php to reflect the new password. + * Once Mantis is running correctly remove the admin directory. +=========================================================================== diff --git a/devel/mantis/Makefile b/devel/mantis/Makefile new file mode 100644 index 00000000000..b129d403b46 --- /dev/null +++ b/devel/mantis/Makefile @@ -0,0 +1,119 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/11/08 19:05:33 adrianp Exp $ + +DISTNAME= mantis-0.19.1 +CATEGORIES= devel www +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mantisbt/} + +MAINTAINER= adrianp@NetBSD.org +HOMEPAGE= http://www.mantisdb.org/ +COMMENT= PHP/MySQL/web based bugtracking system + +DEPENDS+= ap-php>=4.0.6:../../www/ap-php +DEPENDS+= php-mysql>=4.0.6:../../databases/php-mysql + +USE_BUILDLINK3= YES +USE_PKGINSTALL= YES +NO_BUILD= YES + +.include "../../mk/bsd.prefs.mk" + +PKG_OPTIONS_VAR= PKG_OPTIONS.mantis +PKG_SUPPORTED_OPTIONS= charts + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mcharts) +DEPENDS+= php-jpgraph-[0-9]*:../../graphics/php-jpgraph +.endif + +BUILDLINK_DEPENDS.mysql-client+= mysql-client>=3.23.2 +PHP_VERSIONS_ACCEPTED= 4 +MYSQL_VERSIONS_ACCEPTED= 30 40 + +M_DB_HOST?= localhost +M_DB_USER?= root +M_DB_PASS?= +M_DB_DATABASE?= bugtracker +M_DOMAIN?= example.com +APACHE_USER?= www + +BUILD_DEFS+= M_DB_HOST M_DB_USER M_DB_PASS M_DB_DATABASE M_DOMAIN APACHE_USER +MESSAGE_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR} + +MANTIS_HOME= ${PREFIX}/share/mantis +EGDIR= ${PREFIX}/share/examples/mantis +CONF_FILES+= ${EGDIR}/mantis.conf ${PKG_SYSCONFDIR}/mantis.conf +SPECIAL_PERMS= ${MANTIS_HOME}/config_inc.php ${APACHE_USER} ${SHAREGRP} 0400 + +SUBST_CLASSES= conf +SUBST_STAGE.conf= pre-install +SUBST_FILES.conf= config_inc.php mantis.conf +SUBST_SED.conf= -e "s|localhost|${M_DB_HOST}|g" \ + -e "s|root|${M_DB_USER}|g" \ + -e "s|\"\"|\"${M_DB_PASS}\"|g" \ + -e "s|bugtracker|${M_DB_DATABASE}|g" \ + -e "s|example.com|${DOMAIN}|g" \ + -e "s|@MANTIS_HOME@|${MANTIS_HOME}|g" +SUBST_MESSAGE.conf= "Fixing configuration files." + +post-extract: + @${CP} ${FILESDIR}/mantis.conf ${WRKSRC} + @${CP} ${WRKSRC}/config_inc.php.sample ${WRKSRC}/config_inc.php + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mantis + ${INSTALL_DATA_DIR} ${EGDIR} + ${INSTALL_DATA_DIR} ${MANTIS_HOME} + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/admin + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/admin/css + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/admin/upgrades + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core/adodb + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core/adodb/lang + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core/adodb/drivers + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core/adodb/datadict + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core/phpmailer + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/core/phpmailer/language + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/css + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/graphs + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/images + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/javascript + ${INSTALL_DATA_DIR} ${MANTIS_HOME}/lang + ${INSTALL_DATA} ${WRKSRC}/doc/CUSTOMIZATION ${PREFIX}/share/doc/mantis + ${INSTALL_DATA} ${WRKSRC}/doc/INSTALL ${PREFIX}/share/doc/mantis + ${INSTALL_DATA} ${WRKSRC}/doc/README ${PREFIX}/share/doc/mantis + ${INSTALL_DATA} ${WRKSRC}/doc/UPGRADING ${PREFIX}/share/doc/mantis + ${INSTALL_DATA} ${WRKSRC}/*.php ${MANTIS_HOME} + ${INSTALL_DATA} ${WRKSRC}/admin/*.php ${MANTIS_HOME}/admin + ${INSTALL_DATA} ${WRKSRC}/admin/*.css ${MANTIS_HOME}/admin + ${INSTALL_DATA} ${WRKSRC}/admin/css/*.php ${MANTIS_HOME}/admin/css + ${INSTALL_DATA} ${WRKSRC}/admin/upgrades/*.php \ + ${MANTIS_HOME}/admin/upgrades + ${INSTALL_DATA} ${WRKSRC}/core/*.php ${MANTIS_HOME}/core + ${INSTALL_DATA} ${WRKSRC}/core/phpmailer/*.php \ + ${MANTIS_HOME}/core/phpmailer + ${INSTALL_DATA} ${WRKSRC}/core/phpmailer/language/*.php \ + ${MANTIS_HOME}/core/phpmailer/language + ${INSTALL_DATA} ${WRKSRC}/core/adodb/*.php ${MANTIS_HOME}/core/adodb + ${INSTALL_DATA} ${WRKSRC}/core/adodb/*.htm ${MANTIS_HOME}/core/adodb + ${INSTALL_DATA} ${WRKSRC}/core/adodb/lang/*.php \ + ${MANTIS_HOME}/core/adodb/lang + ${INSTALL_DATA} ${WRKSRC}/core/adodb/drivers/*.php \ + ${MANTIS_HOME}/core/adodb/drivers + ${INSTALL_DATA} ${WRKSRC}/core/adodb/datadict/*.php \ + ${MANTIS_HOME}/core/adodb/datadict + ${INSTALL_DATA} ${WRKSRC}/css/*.css ${MANTIS_HOME}/css + ${INSTALL_DATA} ${WRKSRC}/graphs/*.php ${MANTIS_HOME}/graphs + ${INSTALL_DATA} ${WRKSRC}/images/*.gif ${MANTIS_HOME}/images + ${INSTALL_DATA} ${WRKSRC}/images/*.png ${MANTIS_HOME}/images + ${INSTALL_DATA} ${WRKSRC}/javascript/*.js ${MANTIS_HOME}/javascript + ${INSTALL_DATA} ${WRKSRC}/lang/*.txt ${MANTIS_HOME}/lang + ${INSTALL_DATA} ${WRKSRC}/sql/*.sql ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/config_inc.php.sample ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/mantis_offline.php.sample ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/mantis.conf ${EGDIR} + +.include "../../mk/mysql.buildlink3.mk" +.include "../../lang/php/phpversion.mk" +.include "../../mk/apache.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/devel/mantis/PLIST b/devel/mantis/PLIST new file mode 100644 index 00000000000..86e91d128b3 --- /dev/null +++ b/devel/mantis/PLIST @@ -0,0 +1,438 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2004/11/08 19:05:33 adrianp Exp $ +share/doc/mantis/CUSTOMIZATION +share/doc/mantis/INSTALL +share/doc/mantis/README +share/doc/mantis/UPGRADING +share/examples/mantis/config_inc.php.sample +share/examples/mantis/db_generate.sql +share/examples/mantis/mantis.conf +share/examples/mantis/mantis_offline.php.sample +share/examples/mantis/mssql.sql +share/examples/mantis/pgsql.sql +share/mantis/account_delete.php +share/mantis/account_page.php +share/mantis/account_prefs_inc.php +share/mantis/account_prefs_page.php +share/mantis/account_prefs_reset.php +share/mantis/account_prefs_update.php +share/mantis/account_prof_add.php +share/mantis/account_prof_delete.php +share/mantis/account_prof_edit_page.php +share/mantis/account_prof_make_default.php +share/mantis/account_prof_menu_page.php +share/mantis/account_prof_update.php +share/mantis/account_update.php +share/mantis/adm_permissions_report.php +share/mantis/admin/admin.css +share/mantis/admin/check.php +share/mantis/admin/copy_field.php +share/mantis/admin/css/core.php +share/mantis/admin/css/css_download.php +share/mantis/admin/css/css_inc.php +share/mantis/admin/css/css_view.php +share/mantis/admin/css/index.php +share/mantis/admin/css/view_inc.php +share/mantis/admin/db_table_names_inc.php +share/mantis/admin/index.php +share/mantis/admin/move_db2disk.php +share/mantis/admin/system_utils.php +share/mantis/admin/upgrade.php +share/mantis/admin/upgrade_advanced.php +share/mantis/admin/upgrade_escaping.php +share/mantis/admin/upgrade_inc.php +share/mantis/admin/upgrade_list.php +share/mantis/admin/upgrade_warning.php +share/mantis/admin/upgrades/0_13_inc.php +share/mantis/admin/upgrades/0_14_inc.php +share/mantis/admin/upgrades/0_15_inc.php +share/mantis/admin/upgrades/0_16_inc.php +share/mantis/admin/upgrades/0_17_escaping_fixes_inc.php +share/mantis/admin/upgrades/0_17_inc.php +share/mantis/admin/upgrades/0_18_inc.php +share/mantis/admin/upgrades/0_19_inc.php +share/mantis/admin/workflow.php +share/mantis/bug_actiongroup.php +share/mantis/bug_actiongroup_page.php +share/mantis/bug_assign.php +share/mantis/bug_assign_reporter.php +share/mantis/bug_change_status_page.php +share/mantis/bug_delete.php +share/mantis/bug_file_add.php +share/mantis/bug_file_delete.php +share/mantis/bug_file_upload_inc.php +share/mantis/bug_monitor.php +share/mantis/bug_monitor_list_view_inc.php +share/mantis/bug_relationship_add.php +share/mantis/bug_relationship_delete.php +share/mantis/bug_relationship_graph.php +share/mantis/bug_relationship_graph_img.php +share/mantis/bug_reminder.php +share/mantis/bug_reminder_page.php +share/mantis/bug_report.php +share/mantis/bug_report_advanced_page.php +share/mantis/bug_report_page.php +share/mantis/bug_set_sponsorship.php +share/mantis/bug_sponsorship_list_view_inc.php +share/mantis/bug_update.php +share/mantis/bug_update_advanced_page.php +share/mantis/bug_update_page.php +share/mantis/bug_view_advanced_page.php +share/mantis/bug_view_inc.php +share/mantis/bug_view_page.php +share/mantis/bugnote_add.php +share/mantis/bugnote_add_inc.php +share/mantis/bugnote_delete.php +share/mantis/bugnote_edit_page.php +share/mantis/bugnote_set_view_state.php +share/mantis/bugnote_update.php +share/mantis/bugnote_view_inc.php +share/mantis/changelog_page.php +share/mantis/config_defaults_inc.php +share/mantis/config_inc.php +share/mantis/core.php +share/mantis/core/access_api.php +share/mantis/core/adodb/adodb-cryptsession.php +share/mantis/core/adodb/adodb-csvlib.inc.php +share/mantis/core/adodb/adodb-datadict.inc.php +share/mantis/core/adodb/adodb-error.inc.php +share/mantis/core/adodb/adodb-errorhandler.inc.php +share/mantis/core/adodb/adodb-errorpear.inc.php +share/mantis/core/adodb/adodb-lib.inc.php +share/mantis/core/adodb/adodb-pager.inc.php +share/mantis/core/adodb/adodb-pear.inc.php +share/mantis/core/adodb/adodb-session-clob.php +share/mantis/core/adodb/adodb-session.php +share/mantis/core/adodb/adodb-time.inc.php +share/mantis/core/adodb/adodb-xmlschema.inc.php +share/mantis/core/adodb/adodb.inc.php +share/mantis/core/adodb/crypt.inc.php +share/mantis/core/adodb/datadict/datadict-access.inc.php +share/mantis/core/adodb/datadict/datadict-db2.inc.php +share/mantis/core/adodb/datadict/datadict-generic.inc.php +share/mantis/core/adodb/datadict/datadict-ibase.inc.php +share/mantis/core/adodb/datadict/datadict-informix.inc.php +share/mantis/core/adodb/datadict/datadict-mssql.inc.php +share/mantis/core/adodb/datadict/datadict-mysql.inc.php +share/mantis/core/adodb/datadict/datadict-oci8.inc.php +share/mantis/core/adodb/datadict/datadict-postgres.inc.php +share/mantis/core/adodb/docs-adodb.htm +share/mantis/core/adodb/docs-datadict.htm +share/mantis/core/adodb/docs-session.htm +share/mantis/core/adodb/drivers/adodb-access.inc.php +share/mantis/core/adodb/drivers/adodb-ado.inc.php +share/mantis/core/adodb/drivers/adodb-ado_access.inc.php +share/mantis/core/adodb/drivers/adodb-ado_mssql.inc.php +share/mantis/core/adodb/drivers/adodb-borland_ibase.inc.php +share/mantis/core/adodb/drivers/adodb-csv.inc.php +share/mantis/core/adodb/drivers/adodb-db2.inc.php +share/mantis/core/adodb/drivers/adodb-fbsql.inc.php +share/mantis/core/adodb/drivers/adodb-firebird.inc.php +share/mantis/core/adodb/drivers/adodb-ibase.inc.php +share/mantis/core/adodb/drivers/adodb-informix.inc.php +share/mantis/core/adodb/drivers/adodb-informix72.inc.php +share/mantis/core/adodb/drivers/adodb-mssql.inc.php +share/mantis/core/adodb/drivers/adodb-mssqlpo.inc.php +share/mantis/core/adodb/drivers/adodb-mysql.inc.php +share/mantis/core/adodb/drivers/adodb-mysqlt.inc.php +share/mantis/core/adodb/drivers/adodb-oci8.inc.php +share/mantis/core/adodb/drivers/adodb-oci805.inc.php +share/mantis/core/adodb/drivers/adodb-oci8po.inc.php +share/mantis/core/adodb/drivers/adodb-odbc.inc.php +share/mantis/core/adodb/drivers/adodb-odbc_mssql.inc.php +share/mantis/core/adodb/drivers/adodb-odbc_oracle.inc.php +share/mantis/core/adodb/drivers/adodb-oracle.inc.php +share/mantis/core/adodb/drivers/adodb-postgres.inc.php +share/mantis/core/adodb/drivers/adodb-postgres64.inc.php +share/mantis/core/adodb/drivers/adodb-postgres7.inc.php +share/mantis/core/adodb/drivers/adodb-proxy.inc.php +share/mantis/core/adodb/drivers/adodb-sqlanywhere.inc.php +share/mantis/core/adodb/drivers/adodb-sybase.inc.php +share/mantis/core/adodb/drivers/adodb-vfp.inc.php +share/mantis/core/adodb/lang/adodb-en.inc.php +share/mantis/core/adodb/lang/adodb-fr.inc.php +share/mantis/core/adodb/old-changelog.htm +share/mantis/core/adodb/pivottable.inc.php +share/mantis/core/adodb/readme.htm +share/mantis/core/adodb/rsfilter.inc.php +share/mantis/core/adodb/server.php +share/mantis/core/adodb/tips_portable_sql.htm +share/mantis/core/adodb/toexport.inc.php +share/mantis/core/adodb/tohtml.inc.php +share/mantis/core/adodb/tute.htm +share/mantis/core/authentication_api.php +share/mantis/core/bug_api.php +share/mantis/core/bugnote_api.php +share/mantis/core/category_api.php +share/mantis/core/checkin.php +share/mantis/core/class.RSSBuilder.inc.php +share/mantis/core/class.urlmatch.php +share/mantis/core/collapse_api.php +share/mantis/core/compress_api.php +share/mantis/core/config_api.php +share/mantis/core/constant_inc.php +share/mantis/core/csv_api.php +share/mantis/core/current_user_api.php +share/mantis/core/custom_field_api.php +share/mantis/core/custom_function_api.php +share/mantis/core/database_api.php +share/mantis/core/date_api.php +share/mantis/core/email_api.php +share/mantis/core/error_api.php +share/mantis/core/file_api.php +share/mantis/core/filter_api.php +share/mantis/core/gpc_api.php +share/mantis/core/graph_api.php +share/mantis/core/graphviz_api.php +share/mantis/core/helper_api.php +share/mantis/core/history_api.php +share/mantis/core/html_api.php +share/mantis/core/icon_api.php +share/mantis/core/lang_api.php +share/mantis/core/ldap_api.php +share/mantis/core/my_view_inc.php +share/mantis/core/news_api.php +share/mantis/core/obsolete.php +share/mantis/core/php_api.php +share/mantis/core/phpmailer/class.phpmailer.php +share/mantis/core/phpmailer/class.smtp.php +share/mantis/core/phpmailer/language/phpmailer.lang-br.php +share/mantis/core/phpmailer/language/phpmailer.lang-cz.php +share/mantis/core/phpmailer/language/phpmailer.lang-de.php +share/mantis/core/phpmailer/language/phpmailer.lang-en.php +share/mantis/core/phpmailer/language/phpmailer.lang-es.php +share/mantis/core/phpmailer/language/phpmailer.lang-fr.php +share/mantis/core/phpmailer/language/phpmailer.lang-it.php +share/mantis/core/phpmailer/language/phpmailer.lang-nl.php +share/mantis/core/phpmailer/language/phpmailer.lang-no.php +share/mantis/core/phpmailer/language/phpmailer.lang-se.php +share/mantis/core/phpmailer/language/phpmailer.lang-tr.php +share/mantis/core/print_api.php +share/mantis/core/profile_api.php +share/mantis/core/project_api.php +share/mantis/core/relationship_api.php +share/mantis/core/relationship_graph_api.php +share/mantis/core/sponsorship_api.php +share/mantis/core/string_api.php +share/mantis/core/summary_api.php +share/mantis/core/timer_api.php +share/mantis/core/user_api.php +share/mantis/core/user_pref_api.php +share/mantis/core/utility_api.php +share/mantis/core/version_api.php +share/mantis/css/default.css +share/mantis/csv_export.php +share/mantis/file_download.php +share/mantis/graphs/graph_assigned_to_me.php +share/mantis/graphs/graph_by_category.php +share/mantis/graphs/graph_by_cumulative.php +share/mantis/graphs/graph_by_daily_delta.php +share/mantis/graphs/graph_by_release_delta.php +share/mantis/graphs/graph_by_severity.php +share/mantis/graphs/graph_by_severity_status.php +share/mantis/graphs/graph_reported_by_me.php +share/mantis/history_inc.php +share/mantis/images/attachment.png +share/mantis/images/blank.gif +share/mantis/images/dollars.gif +share/mantis/images/down.gif +share/mantis/images/excel2icon.gif +share/mantis/images/excelicon.gif +share/mantis/images/fileicon.gif +share/mantis/images/gificon.gif +share/mantis/images/htmlicon.gif +share/mantis/images/ieicon.gif +share/mantis/images/jpgicon.gif +share/mantis/images/mailicon.gif +share/mantis/images/mantis_space.gif +share/mantis/images/minus.png +share/mantis/images/notice.gif +share/mantis/images/ok.gif +share/mantis/images/pdf2icon.gif +share/mantis/images/pdficon.gif +share/mantis/images/plus.png +share/mantis/images/pngicon.gif +share/mantis/images/ppticon.gif +share/mantis/images/priority_1.gif +share/mantis/images/priority_2.gif +share/mantis/images/priority_3.gif +share/mantis/images/priority_low_1.gif +share/mantis/images/priority_low_2.gif +share/mantis/images/priority_low_3.gif +share/mantis/images/protected.gif +share/mantis/images/rel_dependant.png +share/mantis/images/rel_duplicate.png +share/mantis/images/rel_related.png +share/mantis/images/synthese.gif +share/mantis/images/synthgraph.gif +share/mantis/images/texticon.gif +share/mantis/images/unknownicon.gif +share/mantis/images/unread.gif +share/mantis/images/up.gif +share/mantis/images/update.png +share/mantis/images/word2icon.gif +share/mantis/images/wordicon.gif +share/mantis/images/zipicon.gif +share/mantis/index.php +share/mantis/javascript/common.js +share/mantis/jump_to_bug.php +share/mantis/lang/strings_chinese_simplified.txt +share/mantis/lang/strings_chinese_traditional.txt +share/mantis/lang/strings_croatian.txt +share/mantis/lang/strings_czech.txt +share/mantis/lang/strings_danish.txt +share/mantis/lang/strings_dutch.txt +share/mantis/lang/strings_english.txt +share/mantis/lang/strings_estonian.txt +share/mantis/lang/strings_finnish.txt +share/mantis/lang/strings_french.txt +share/mantis/lang/strings_german.txt +share/mantis/lang/strings_hungarian.txt +share/mantis/lang/strings_italian.txt +share/mantis/lang/strings_japanese_euc.txt +share/mantis/lang/strings_japanese_sjis.txt +share/mantis/lang/strings_japanese_utf8.txt +share/mantis/lang/strings_korean.txt +share/mantis/lang/strings_korean_utf8.txt +share/mantis/lang/strings_latvian.txt +share/mantis/lang/strings_lithuanian.txt +share/mantis/lang/strings_norwegian.txt +share/mantis/lang/strings_polish.txt +share/mantis/lang/strings_portuguese_brazil.txt +share/mantis/lang/strings_portuguese_standard.txt +share/mantis/lang/strings_romanian.txt +share/mantis/lang/strings_russian.txt +share/mantis/lang/strings_russian_koi8.txt +share/mantis/lang/strings_serbian.txt +share/mantis/lang/strings_slovak.txt +share/mantis/lang/strings_slovene.txt +share/mantis/lang/strings_spanish.txt +share/mantis/lang/strings_swedish.txt +share/mantis/lang/strings_turkish.txt +share/mantis/lang/strings_ukrainian.txt +share/mantis/login.php +share/mantis/login_anon.php +share/mantis/login_cookie_test.php +share/mantis/login_page.php +share/mantis/login_select_proj_page.php +share/mantis/logout_page.php +share/mantis/lost_pwd.php +share/mantis/lost_pwd_page.php +share/mantis/main_page.php +share/mantis/make_captcha_img.php +share/mantis/manage_custom_field_create.php +share/mantis/manage_custom_field_delete.php +share/mantis/manage_custom_field_edit_page.php +share/mantis/manage_custom_field_page.php +share/mantis/manage_custom_field_update.php +share/mantis/manage_proj_cat_add.php +share/mantis/manage_proj_cat_copy.php +share/mantis/manage_proj_cat_delete.php +share/mantis/manage_proj_cat_edit_page.php +share/mantis/manage_proj_cat_update.php +share/mantis/manage_proj_create.php +share/mantis/manage_proj_create_page.php +share/mantis/manage_proj_custom_field_add_existing.php +share/mantis/manage_proj_custom_field_remove.php +share/mantis/manage_proj_custom_field_update.php +share/mantis/manage_proj_delete.php +share/mantis/manage_proj_edit_page.php +share/mantis/manage_proj_page.php +share/mantis/manage_proj_update.php +share/mantis/manage_proj_user_add.php +share/mantis/manage_proj_user_copy.php +share/mantis/manage_proj_user_remove.php +share/mantis/manage_proj_ver_add.php +share/mantis/manage_proj_ver_delete.php +share/mantis/manage_proj_ver_edit_page.php +share/mantis/manage_proj_ver_update.php +share/mantis/manage_user_create.php +share/mantis/manage_user_create_page.php +share/mantis/manage_user_delete.php +share/mantis/manage_user_edit_page.php +share/mantis/manage_user_page.php +share/mantis/manage_user_proj_add.php +share/mantis/manage_user_proj_delete.php +share/mantis/manage_user_prune.php +share/mantis/manage_user_reset.php +share/mantis/manage_user_update.php +share/mantis/meta_inc.php +share/mantis/my_view_page.php +share/mantis/news_add.php +share/mantis/news_delete.php +share/mantis/news_edit_page.php +share/mantis/news_inc.php +share/mantis/news_list_page.php +share/mantis/news_menu_page.php +share/mantis/news_rss.php +share/mantis/news_update.php +share/mantis/news_view_page.php +share/mantis/print_all_bug_options_inc.php +share/mantis/print_all_bug_options_page.php +share/mantis/print_all_bug_options_reset.php +share/mantis/print_all_bug_options_update.php +share/mantis/print_all_bug_page.php +share/mantis/print_all_bug_page_excel.php +share/mantis/print_all_bug_page_word.php +share/mantis/print_bug_page.php +share/mantis/print_bugnote_inc.php +share/mantis/proj_doc_add.php +share/mantis/proj_doc_add_page.php +share/mantis/proj_doc_delete.php +share/mantis/proj_doc_edit_page.php +share/mantis/proj_doc_page.php +share/mantis/proj_doc_update.php +share/mantis/query_delete.php +share/mantis/query_delete_page.php +share/mantis/query_store.php +share/mantis/query_store_page.php +share/mantis/query_view_page.php +share/mantis/set_project.php +share/mantis/signup.php +share/mantis/signup_page.php +share/mantis/summary_graph_bycategory.php +share/mantis/summary_graph_bycategory_pct.php +share/mantis/summary_graph_bydeveloper.php +share/mantis/summary_graph_bypriority.php +share/mantis/summary_graph_bypriority_mix.php +share/mantis/summary_graph_bypriority_pct.php +share/mantis/summary_graph_byreporter.php +share/mantis/summary_graph_byresolution.php +share/mantis/summary_graph_byresolution_mix.php +share/mantis/summary_graph_byresolution_pct.php +share/mantis/summary_graph_byseverity.php +share/mantis/summary_graph_byseverity_mix.php +share/mantis/summary_graph_byseverity_pct.php +share/mantis/summary_graph_bystatus.php +share/mantis/summary_graph_bystatus_pct.php +share/mantis/summary_graph_cumulative_bydate.php +share/mantis/summary_graph_imp_category.php +share/mantis/summary_graph_imp_priority.php +share/mantis/summary_graph_imp_resolution.php +share/mantis/summary_graph_imp_severity.php +share/mantis/summary_graph_imp_status.php +share/mantis/summary_jpgraph_page.php +share/mantis/summary_page.php +share/mantis/verify.php +share/mantis/view.php +share/mantis/view_all_bug_page.php +share/mantis/view_all_inc.php +share/mantis/view_all_set.php +share/mantis/view_filters_page.php +@dirrm share/mantis/lang +@dirrm share/mantis/javascript +@dirrm share/mantis/images +@dirrm share/mantis/graphs +@dirrm share/mantis/css +@dirrm share/mantis/core/phpmailer/language +@dirrm share/mantis/core/phpmailer +@dirrm share/mantis/core/adodb/lang +@dirrm share/mantis/core/adodb/drivers +@dirrm share/mantis/core/adodb/datadict +@dirrm share/mantis/core/adodb +@dirrm share/mantis/core +@dirrm share/mantis/admin/upgrades +@dirrm share/mantis/admin/css +@dirrm share/mantis/admin +@dirrm share/mantis +@dirrm share/examples/mantis +@dirrm share/doc/mantis diff --git a/devel/mantis/distinfo b/devel/mantis/distinfo new file mode 100644 index 00000000000..67574c528de --- /dev/null +++ b/devel/mantis/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2004/11/08 19:05:33 adrianp Exp $ + +SHA1 (mantis-0.19.1.tar.gz) = 4e3fb34ec5fb12766a45b54b0168ef4c41e365e8 +Size (mantis-0.19.1.tar.gz) = 1206305 bytes diff --git a/devel/mantis/files/mantis.conf b/devel/mantis/files/mantis.conf new file mode 100644 index 00000000000..c7f167adb52 --- /dev/null +++ b/devel/mantis/files/mantis.conf @@ -0,0 +1,12 @@ +# $NetBSD: mantis.conf,v 1.1.1.1 2004/11/08 19:05:33 adrianp Exp $ +# +# Mantis configuration file fragment for Apache + +<IfModule mod_alias.c> + Alias /mantis/ "@MANTIS_HOME@/" +</IfModule> + +<Directory "@MANTIS_HOME@"> + Order allow,deny + Allow from all +</Directory> |