In ports/185107, 'asciidocapi.py' was requested to be installed along with textproc/asciidoc. While the commit installed the file, it did not add it to pkg-plist. Due to the (desirable) behavior of StageDir, 'asciidocapi.py' was not actually installed when running `make install`. Fix: Add the missing files to pkg-plist (apply the attached patch). Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->sunpoet Over to maintainer (via the GNATS Auto Assign Tool)
Author: sunpoet Date: Tue Feb 4 16:54:12 2014 New Revision: 342575 URL: http://svnweb.freebsd.org/changeset/ports/342575 QAT: https://qat.redports.org/buildarchive/r342575/ Log: - Fix PLIST - Bump PORTREVISION for package change PR: ports/186155 Submitted by: Kevin Zheng <kevinz5000@gmail.com> Modified: head/textproc/asciidoc/Makefile head/textproc/asciidoc/pkg-plist Modified: head/textproc/asciidoc/Makefile ============================================================================== --- head/textproc/asciidoc/Makefile Tue Feb 4 16:54:09 2014 (r342574) +++ head/textproc/asciidoc/Makefile Tue Feb 4 16:54:12 2014 (r342575) @@ -3,7 +3,7 @@ PORTNAME= asciidoc PORTVERSION= 8.6.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF Modified: head/textproc/asciidoc/pkg-plist ============================================================================== --- head/textproc/asciidoc/pkg-plist Tue Feb 4 16:54:09 2014 (r342574) +++ head/textproc/asciidoc/pkg-plist Tue Feb 4 16:54:12 2014 (r342575) @@ -139,6 +139,7 @@ bin/asciidoc.py @unexec if cmp -s %D/%%ETCDIR%%/xhtml11-quirks.conf.sample %D/%%ETCDIR%%/xhtml11-quirks.conf; then rm -f %D/%%ETCDIR%%/xhtml11-quirks.conf; fi %%ETCDIR%%/xhtml11-quirks.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/xhtml11-quirks.conf ]; then cp -p %D/%F %B/xhtml11-quirks.conf; fi +%%PYTHON_SITELIBDIR%%/asciidocapi.py man/man1/a2x.1.gz man/man1/asciidoc.1.gz @dirrm %%ETCDIR%%/themes/volnitsky _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!