diff options
author | matthew <matthew@FreeBSD.org> | 2014-04-26 18:43:13 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2014-04-26 18:43:13 +0800 |
commit | 090e892f6b3389fc02a3620aa0f729721816d9e2 (patch) | |
tree | 52c96dc5f470253c5c0d35e8be6c7cdb080a0e5a /www/trac | |
parent | 35087071ac0532b7151c45a2cf9e842c1341f5eb (diff) | |
download | freebsd-ports-gnome-090e892f6b3389fc02a3620aa0f729721816d9e2.tar.gz freebsd-ports-gnome-090e892f6b3389fc02a3620aa0f729721816d9e2.tar.zst freebsd-ports-gnome-090e892f6b3389fc02a3620aa0f729721816d9e2.zip |
Fix missing substitution in the init script
PR: ports/188401
Submitted by: me (matthew)
Approved by: maintainer timeout (21 days)
Diffstat (limited to 'www/trac')
-rw-r--r-- | www/trac/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/trac/Makefile b/www/trac/Makefile index b8757fc5854b..272ea7c6d5d5 100644 --- a/www/trac/Makefile +++ b/www/trac/Makefile @@ -3,7 +3,7 @@ PORTNAME= trac PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www devel python MASTER_SITES= http://ftp.edgewall.com/pub/trac/ \ ftp://ftp.edgewall.com/pub/trac/ @@ -51,10 +51,10 @@ USE_PYTHON= 2 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes USE_RC_SUBR= tracd +SUB_LIST+= PYTHON_CMD=${PYTHON_CMD} post-install: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/sample-plugins - ${FIND} ${WRKSRC}/contrib -type f -maxdepth 1 -exec ${INSTALL_DATA} {} ${STAGEDIR}${EXAMPLESDIR}/ \; + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/sample-plugins ${FIND} ${WRKSRC}/contrib -type f -maxdepth 1 -exec ${INSTALL_DATA} {} ${STAGEDIR}${EXAMPLESDIR}/ \; (cd ${WRKSRC}/sample-plugins && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/sample-plugins) @${MKDIR} ${STAGEDIR}${DATADIR}/cgi-bin ${INSTALL_SCRIPT} ${WRKSRC}/contrib/cgi-bin/* ${STAGEDIR}${DATADIR}/cgi-bin |