6bfc2e60ec
Trac 0.11.5 (July 17, 2009) http://svn.edgewall.org/repos/trac/tags/trac-0.11.5 Trac 0.11.5 is identical to 0.11.5rc2 except for fixing a minor incompatibility issue when using IIS via AJP as frontend (#8475). Trac 0.11.5rc2 (July 11, 2009) http://svn.edgewall.org/repos/trac/tags/trac-0.11.5rc2 Trac 0.11.5rc2 fixes two regressions found in rc1 and one minor enhancement: * Fixed workaround for zipped Genshi eggs, [8354], #7823 * Fixed internal error when removing a wiki page version [8343]. * Fixed display of merge properties for scoped repositories #7715. Trac 0.11.5rc1 (March 30, 2009) http://svn.edgewall.org/repos/trac/tags/trac-0.11.5rc1 Trac 0.11.5rc1 contains a number of bug fixes and minor enhancements. The following list contains only a few highlights: Bug fixes: * Implemented pre-upgrade backup support for PostgreSQL and MySQL (#2304) * Fixed PostgreSQL upgrade issue (#8378) * More robust diff parsing (#2672) * Avoid intermittent hangs by not calling apr_terminate explicitly (#7785)
64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.45 2009/07/20 18:13:01 gdt Exp $
|
|
#
|
|
|
|
DISTNAME= Trac-0.11.5
|
|
PKGNAME= ${DISTNAME:tl}
|
|
CATEGORIES= devel www
|
|
MASTER_SITES= http://ftp.edgewall.org/pub/trac/ \
|
|
ftp://ftp.edgewall.org/pub/trac/
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://trac.edgewall.org/
|
|
COMMENT= Subversion repository browser, wiki, and issue tracking system
|
|
LICENSE= modified-bsd
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-genshi>=0.5:../../www/py-genshi
|
|
DEPENDS+= ${PYPKGPREFIX}-subversion>=1.1.0:../../devel/py-subversion
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.trac
|
|
PKG_OPTIONS_REQUIRED_GROUPS= db
|
|
PKG_OPTIONS_GROUP.db= sqlite pgsql psycopg2
|
|
PKG_SUGGESTED_OPTIONS= sqlite
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PYDISTUTILSPKG= YES
|
|
PY_PATCHPLIST= YES
|
|
PYTHON_PATCH_SCRIPTS= cgi-bin/trac.* contrib/*.py contrib/*-hook
|
|
PYTHON_PATCH_SCRIPTS+= trac/tests/functional/*.py
|
|
|
|
.include "../../lang/python/application.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Msqlite)
|
|
.if defined(PYPACKAGE) && \
|
|
(${PYPACKAGE} == "python23" || ${PYPACKAGE} == "python24")
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2:../../databases/py-sqlite2
|
|
.else
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3>=0:../../databases/py-sqlite3
|
|
.endif
|
|
.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
|
|
# MySQL is sort of supported but not recommended by upstream and hence
|
|
# omitted.
|
|
|
|
EGDIR= ${PREFIX}/share/examples/trac
|
|
CGIBINDIR= ${PREFIX}/libexec/trac
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
|
|
${INSTALL_PROGRAM_DIR} ${DESTDIR}${CGIBINDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/cgi-bin/trac.* ${DESTDIR}${CGIBINDIR}
|
|
cd ${WRKSRC}/contrib && pax -rwppm -s ',./rpm/.*$$,,' -s ',./rpm$$,,' \
|
|
. ${DESTDIR}${EGDIR}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|