svn commit: r340875 - head/graphics/py-pyglet

Mathieu Arnold mat at FreeBSD.org
Fri Jan 24 08:35:30 UTC 2014


+--On 24 janvier 2014 01:25:38 +0000 Dmitry Marakasov <amdmi3 at FreeBSD.org>
wrote:
|  LIB_DEPENDS=	libfreetype.so:${PORTSDIR}/print/freetype2 \
| -		libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
| +		libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \
| +RUN_DEPENDS=	${LOCALBASE}/lib/libavbin.so:${PORTSDIR}/multimedia/avbin

Hum, I think you have a \ too many.

|  post-install:
| +	${MKDIR} ${STAGEDIR}${DOCSDIR}
| +	cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG NOTICE README
| ${STAGEDIR}${DOCSDIR}/  	cd ${WRKSRC}/doc && ${COPYTREE_SHARE} .
| ${STAGEDIR}${DOCSDIR}/
|  	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/

When doing cd foo && bar, you should always enclose it inside parenthesis,
like this : (cd foo && bar) so that the following commands don't run in in
a non default directory. (I know here it doesn't really matter right now
because all the lines do cd, but it's a good habit to have.)

-- 
Mathieu Arnold


More information about the svn-ports-all mailing list