From owner-svn-ports-all@FreeBSD.ORG Fri Sep 27 22:04:10 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTP id 7E1FD631 for ; Fri, 27 Sep 2013 22:04:10 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E3832D97 for ; Fri, 27 Sep 2013 22:04:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8RM4AYU098091 for ; Fri, 27 Sep 2013 22:04:10 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RM4A0r098082 for svn-ports-all@freebsd.org; Fri, 27 Sep 2013 22:04:10 GMT (envelope-from bdrewery) Received: (qmail 10619 invoked from network); 27 Sep 2013 17:04:08 -0500 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 27 Sep 2013 17:04:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 27 Sep 2013 17:04:07 -0500 From: Bryan Drewery To: Baptiste Daroussin Subject: Re: svn commit: r328171 - head/sysutils/fusefs-libs Organization: FreeBSD In-Reply-To: <201309241718.r8OHIRIu022663@svn.freebsd.org> References: <201309241718.r8OHIRIu022663@svn.freebsd.org> Message-ID: X-Sender: bdrewery@FreeBSD.org User-Agent: Roundcube Webmail/0.9.3 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, owner-ports-committers@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 22:04:10 -0000 On 2013-09-24 12:18, Baptiste Daroussin wrote: > Author: bapt > Date: Tue Sep 24 17:18:27 2013 > New Revision: 328171 > URL: http://svnweb.freebsd.org/changeset/ports/328171 > > Log: > Change the way to handle DOCS to please pkg_install stupidity > > Modified: > head/sysutils/fusefs-libs/Makefile > head/sysutils/fusefs-libs/pkg-plist > > Modified: head/sysutils/fusefs-libs/Makefile > ============================================================================== > --- head/sysutils/fusefs-libs/Makefile Tue Sep 24 17:11:51 > 2013 (r328170) > +++ head/sysutils/fusefs-libs/Makefile Tue Sep 24 17:18:27 > 2013 (r328171) > @@ -20,7 +20,7 @@ USE_LDCONFIG= yes > USES= iconv > CONFIGURE_ARGS= --prefix=${PREFIX} \ > --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig > -PORTDOCS= libs/how-fuse-works \ > +DOCS= libs/how-fuse-works \ > libs/kernel.txt > > .include > @@ -29,7 +29,7 @@ post-install: > ${INSTALL_DATA} ${WRKSRC}/include/fuse_kernel.h > ${STAGEDIR}${PREFIX}/include/fuse > .if ${PORT_OPTIONS:MDOCS} > @${MKDIR} ${STAGEDIR}${DOCSDIR}/libs > - @cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${PORTDOCS:S/libs\///} > ${STAGEDIR}${DOCSDIR}/libs > + @cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${DOCS:S/libs\///} > ${STAGEDIR}${DOCSDIR}/libs > .endif > > > > Modified: head/sysutils/fusefs-libs/pkg-plist > ============================================================================== > --- head/sysutils/fusefs-libs/pkg-plist Tue Sep 24 17:11:51 > 2013 (r328170) > +++ head/sysutils/fusefs-libs/pkg-plist Tue Sep 24 17:18:27 > 2013 (r328171) > @@ -22,5 +22,7 @@ man/man1/fusermount.1.gz > man/man1/ulockmgr_server.1.gz > man/man8/mount.fuse.8.gz > @dirrm include/fuse > +%%PORTDOCS%% %%DOCSDIR%%/libs/how-fuse-works > +%%PORTDOCS%% %%DOCSDIR%%/libs/kernel.txt Looks like the spaces are causing problems: ===> Building package for fusefs-libs-2.9.3_1 tar: share/doc/fusefs/libs/how-fuse-works: Cannot stat: No such file or directory tar: share/doc/fusefs/libs/kernel.txt: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. > %%PORTDOCS%%@dirrm %%DOCSDIR%%/libs > %%PORTDOCS%%@dirrmtry %%DOCSDIR%% -- Regards, Bryan Drewery