mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
69bd3572c1
PR: 138391 Submitted by: Alexey V.Degtyarev <alexey@renatasystems.org> (maintainer)
106 lines
3.1 KiB
Makefile
106 lines
3.1 KiB
Makefile
# New ports collection makefile for: trac-multirepos
|
|
# Date created: Tue 07 May 2009
|
|
# Whom: Alexey V. Degtyarev <alexey@renatasystems.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= multirepos
|
|
PORTVERSION= 0.12.8514
|
|
CATEGORIES= www devel python
|
|
MASTER_SITES= ftp://renatasystems.org/pub/FreeBSD/ports/distfiles/
|
|
PKGNAMEPREFIX= trac-
|
|
DISTNAME= Trac-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= alexey@renatasystems.org
|
|
COMMENT= Multiple repositories Trac version
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Genshi-devel>=0.6:${PORTSDIR}/textproc/py-genshi-devel
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
OPTIONS= SILVERCITY "Use Silvercity for syntax highlighting" On \
|
|
DOCUTILS "Allow additional text markup" On \
|
|
PYGMENTS "Use generic syntax highlighter" On \
|
|
TZ "Process Time Zones" On \
|
|
PGSQL "Use PostgreSQL instead of SQLite3" Off \
|
|
SUBVERSION "Support for subversion RCS" On
|
|
|
|
CONFLICTS= ja-trac-0.* trac-0.11.*
|
|
|
|
USE_RC_SUBR= tracd
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PYDISTUTILS_PKGNAME= Trac
|
|
PYDISTUTILS_NOEGGINFO= yes
|
|
PYDISTUTILS_PKGVERSION= ${PORTVERSION:R}${PORTNAME}
|
|
|
|
SUB_LIST= PYTHON_CMD=${PYTHON_CMD}
|
|
SUB_FILES= tracd
|
|
|
|
# This target is only meant to be used by the port maintainer.
|
|
x-generate-plist:
|
|
(${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX} \
|
|
| ${SED} -E \
|
|
's,.*share/nls/.+$$,,g \
|
|
;s,@dirrm share/man(/.*)?$$,,g \
|
|
;s,${PYTHON_SITELIBDIR:S,^${PYTHONBASE}/,,},%%PYTHON_SITELIBDIR%%,g \
|
|
;s,${DATADIR_REL},%%DATADIR%%,g \
|
|
;s,${EXAMPLESDIR_REL},%%EXAMPLESDIR%%,g \
|
|
;s,${PYEASYINSTALL_EGG},%%PYEASYINSTALL_EGG%%,g \
|
|
;s,@dirrm (%%PYTHON_SITELIBDIR%%|${PYTHON_LIBDIR:S,${PYTHONBASE}/,,})$$,,g \
|
|
' | ${TR} -s '\n') > temp-pkg-plist
|
|
|
|
pre-install:
|
|
${REINPLACE_CMD} -i '' -e 's|/usr/bin/python|${PYTHON_CMD}|' \
|
|
${WRKSRC}/cgi-bin/trac.fcgi ${WRKSRC}/cgi-bin/trac.cgi
|
|
|
|
post-install:
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
. for d in rpm workflow
|
|
${MKDIR} ${EXAMPLESDIR}/${d}
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/${d}/* ${EXAMPLESDIR}/${d}/
|
|
${RM} -rf ${WRKSRC}/contrib/${d}
|
|
. endfor
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/* ${EXAMPLESDIR}
|
|
${MKDIR} ${DATADIR}/cgi-bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/cgi-bin/* ${DATADIR}/cgi-bin
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_SILVERCITY)
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/source2html.py:${PORTSDIR}/textproc/silvercity
|
|
.endif
|
|
|
|
.if defined(WITH_DOCUTILS)
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/rst2html:${PORTSDIR}/textproc/py-docutils
|
|
.endif
|
|
|
|
.if defined(WITH_PYGMENTS)
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/pygmentize:${PORTSDIR}/textproc/py-pygments
|
|
.endif
|
|
|
|
.if defined(WITH_TZ)
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
|
|
.endif
|
|
|
|
.if defined(WITH_PGSQL)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopg2/__init__.py:${PORTSDIR}/databases/py-psycopg2
|
|
.else
|
|
. if ${PYTHON_REL} < 250
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23
|
|
. else
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3
|
|
. endif
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_SUBVERSION)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/svn/__init__.py:${PORTSDIR}/devel/py-subversion
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|