From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 08:35:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3F86A30; Fri, 24 Jan 2014 08:35:30 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 751B21347; Fri, 24 Jan 2014 08:35:30 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 1487ABDC56; Fri, 24 Jan 2014 09:35:29 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id E5FF2BDC2E; Fri, 24 Jan 2014 09:35:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 81172CCE2B7D; Fri, 24 Jan 2014 09:35:26 +0100 (CET) Date: Fri, 24 Jan 2014 09:35:24 +0100 From: Mathieu Arnold To: Dmitry Marakasov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340875 - head/graphics/py-pyglet Message-ID: <02676048890BF03180E6CFAB@atuin.in.mat.cc> In-Reply-To: <201401240125.s0O1PcNR065306@svn.freebsd.org> References: <201401240125.s0O1PcNR065306@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jan 2014 08:35:30 -0000 +--On 24 janvier 2014 01:25:38 +0000 Dmitry Marakasov 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