7ebe693e36
Trac-0.11.ja1 (Jul 7, 2008) * Based on Trac 0.11 'Genshi' * Translate messages into Japanese. * trac/util/translation.py * trac/**/*.py * trac/**/templates/* * trac/htdocs/js/*.js * trac/wiki/default-pages/* * Modify date and charset locale to Japanese convention. * trac/util/datefmt.py * trac/util/text.py * Pass all test. * trac/test.py * trac/**/tests/*.{py|txt} * Add new files and sentences for description our work. * COPYING.trac-ja * README.trac-ja * trac/templates/about.html * trac/templates/theme.html * trac/wiki/default-pages/TracJa * Change parameters for our distribution. * setup.py Trac 0.11 'Genshi' (June 22, 2008) http://svn.edgewall.org/repos/trac/tags/trac-0.11 Trac 0.11 contains a great number of new features, improvements and bug fixes. The following list contains only a few highlights: * New template engine for generating content (Genshi) * New configurable workflow in the ticket subsystem * Finer-grained control of permissions * Support for Pygments as the default syntax highlighter * Improved repository browser ("blame" support, dynamic in-place expansion of folders) * Improved user preferences subsystem, among which the possibility for * any user to select their time zone and disable access keys * The WebAdmin plugin is now an integral part of Trac * Paging of timeline and query results. A more complete list of new features can be found in the RELEASE file. The complete list of closed tickets can be found here: http://trac.edgewall.org/query?status=closed&milestone=0.11
21 lines
664 B
Makefile
21 lines
664 B
Makefile
# $NetBSD: options.mk,v 1.1 2008/08/01 08:46:55 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.trac
|
|
PKG_OPTIONS_REQUIRED_GROUPS= db
|
|
PKG_OPTIONS_GROUP.db= sqlite pgsql psycopg2 mysql
|
|
PKG_SUGGESTED_OPTIONS= sqlite
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Msqlite)
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2.3.2:../../databases/py-sqlite2
|
|
.endif
|
|
.if !empty(PKG_OPTIONS:Mpgsql)
|
|
DEPENDS+= ${PYPKGPREFIX}-PgSQL>=2.4:../../databases/py-PgSQL
|
|
.endif
|
|
.if !empty(PKG_OPTIONS:Mpsycopg2)
|
|
DEPENDS+= ${PYPKGPREFIX}-psycopg2>=2:../../databases/py-psycopg2
|
|
.endif
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
|
DEPENDS+= ${PYPKGPREFIX}-mysqldb>=1.2.1:../../databases/py-mysqldb
|
|
.endif
|