Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Apr 2014 10:43:13 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r352242 - head/www/trac
Message-ID:  <201404261043.s3QAhD0D084446@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Sat Apr 26 10:43:13 2014
New Revision: 352242
URL: http://svnweb.freebsd.org/changeset/ports/352242
QAT: https://qat.redports.org/buildarchive/r352242/

Log:
  Fix missing substitution in the init script
  
  PR:		ports/188401
  Submitted by:	me (matthew)
  Approved by:	maintainer timeout (21 days)

Modified:
  head/www/trac/Makefile

Modified: head/www/trac/Makefile
==============================================================================
--- head/www/trac/Makefile	Sat Apr 26 10:35:18 2014	(r352241)
+++ head/www/trac/Makefile	Sat Apr 26 10:43:13 2014	(r352242)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404261043.s3QAhD0D084446>