blob: f159364ceaeeb89954d67760d2313c12faaa9945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# $NetBSD: Makefile,v 1.85 2019/04/26 13:14:22 maya Exp $
DISTNAME= Trac-1.0.13
PKGNAME= ${DISTNAME:tl}
PKGREVISION= 1
CATEGORIES= devel www
MASTER_SITES= http://ftp.edgewall.org/pub/trac/
MAINTAINER= gdt@NetBSD.org
HOMEPAGE= http://trac.edgewall.org/
COMMENT= Repository browser, wiki, and issue tracking system
LICENSE= modified-bsd
# Updates to micro-releases along stable branches are commited without
# testing.
#
# Trac supports svn and git in the base, plus others via plugins,
# using them at runtime if configured. Therefore this package does
# not depend on svn or git to avoid installing them for trac installs
# that use the other.
DEPENDS+= ${PYPKGPREFIX}-genshi>=0.6:../../www/py-genshi
USE_TOOLS+= pax
# The Trac 1.0 series does not support python 3.
PYTHON_VERSIONS_INCOMPATIBLE= 36 37
REPLACE_PYTHON= contrib/cgi-bin/trac.* contrib/*.py contrib/*-hook
REPLACE_PYTHON+= trac/tests/functional/*.py
.include "../../lang/python/application.mk"
EGDIR= ${PREFIX}/share/examples/trac
CGIBINDIR= ${PREFIX}/libexec/trac
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
${INSTALL_PROGRAM_DIR} ${DESTDIR}${CGIBINDIR}
${INSTALL_SCRIPT} ${WRKSRC}/contrib/cgi-bin/trac.* ${DESTDIR}${CGIBINDIR}
cd ${WRKSRC}/contrib && pax -rwppm -s ',./rpm/.*$$,,' -s ',./rpm$$,,' \
. ${DESTDIR}${EGDIR}
.include "options.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|