Trac-1.0.ja1 (Oct 4, 2012) * Based on Trac 1.0 'Cell' * Change document and parameters for this distribution. - *.trac-ja - setup.py - trac/templates/about.html - trac/templates/theme.html * Translate default Wiki pages into Japanese. - trac/wiki/default-pages/* * Translate default reports into Japanese. - trac/db_default.py * Translate default workflow display into Japanese. * trac/ticket/templates/report.rss * trac/ticket/templates/report_view.html * [Patch] Add formatting for report using Japanese column name. - trac/ticket/report.py - trac/ticket/templates/report.rss - trac/ticket/templates/report_view.html * [Patch] Fix a bug that local time will not be applied when downloading repository files as Zip. - trac/versioncontrol/web_ui/changeset.py * [Patch] Small patch for Unicode - trac/about.py * [Patch] Fix based on ticket #10877. -trac/util/text.py -trac/util/test/text.py Trac 1.0 'Cell' (September 7, 2012) http://svn.edgewall.org/repos/trac/tags/trac-1.0 Trac 1.0 is a major release adding refreshed user interface and improved DVCS repository support as the most visible changes. The following list contains only a few highlights: - The default theme looks more modern, especially on recent browsers (no effort has been made to make it look better on older browsers like IE6 or 7) - The TracHacks GitPlugin has been donated by Herbert Valerio Riedel to the Trac project (many thanks!) and is now maintained here as an optional component - As a consequence, the Subversion support has been moved below `tracopt.versioncontrol` as well - The Git and Mercurial log view feature a visualization of the branching structure - Usability improvements for the tickets, with a better support for conflict detection and resolution - Integration of the TracHacks BatchModifyPlugin, contributed by Brian Meeker (many thanks!) and is now maintained there as a default component - jQuery/UI integration, featuring a date picker for date fields - Improved integration with Pygments syntax highlighting - ... and numerous smaller features added and bugs fixed since 0.12!
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.41 2013/01/20 08:56:48 obache Exp $
|
|
#
|
|
|
|
DISTNAME= Trac-1.0.ja1
|
|
PKGNAME= ja-${DISTNAME:tl:S/.ja/pl/}
|
|
CATEGORIES= www devel
|
|
MASTER_SITES= http://www.i-act.co.jp/project/products/downloads/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://www.i-act.co.jp/project/products/products.html
|
|
COMMENT= Trac issue tracking system with Japanese localization
|
|
LICENSE= modified-bsd
|
|
|
|
CONFLICTS+= trac-[0-9]*
|
|
|
|
USE_LANGUAGES= # none
|
|
USE_TOOLS+= pax
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-genshi>=0.6:../../www/py-genshi
|
|
DEPENDS+= ${PYPKGPREFIX}-babel>=0.9.5:../../devel/py-babel
|
|
|
|
REPLACE_PYTHON= contrib/cgi-bin/trac.cgi contrib/cgi-bin/trac.fcgi
|
|
REPLACE_PYTHON+=contrib/*.py contrib/*-hook contrib/workflow/*.py
|
|
REPLACE_PYTHON+=trac/admin/templates/deploy_trac.* trac/tests/functional/*.py
|
|
|
|
.include "options.mk"
|
|
|
|
EGDIR= share/examples/trac
|
|
|
|
INSTALLATION_DIRS+= libexec/cgi-bin ${EGDIR}
|
|
|
|
post-install:
|
|
.for cgi in trac.cgi trac.fcgi
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/cgi-bin/${cgi} ${DESTDIR}${PREFIX}/libexec/cgi-bin
|
|
.endfor
|
|
cd ${WRKSRC}/contrib && \
|
|
pax -rw -pp -pm . ${DESTDIR}${PREFIX}/${EGDIR}
|
|
|
|
MESSAGE_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
|
|
|
|
# deploy template files
|
|
CHECK_INTERPRETER_SKIP+= ${PYSITELIB}/trac/admin/templates/deploy_*.*gi
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|