Date: Tue, 19 Jun 2018 00:29:16 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472723 - head/textproc/xlhtml Message-ID: <201806190029.w5J0TGKC082169@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Tue Jun 19 00:29:16 2018 New Revision: 472723 URL: https://svnweb.freebsd.org/changeset/ports/472723 Log: textproc/xlhtml: Fix build when autotools is installed While here, strip binaries PR: 226080 Submitted by: Chris Hutchinson <portmaster@bsdforge.com> Modified: head/textproc/xlhtml/Makefile (contents, props changed) Modified: head/textproc/xlhtml/Makefile ============================================================================== --- head/textproc/xlhtml/Makefile Tue Jun 19 00:10:16 2018 (r472722) +++ head/textproc/xlhtml/Makefile Tue Jun 19 00:29:16 2018 (r472723) @@ -3,7 +3,7 @@ PORTNAME= xlhtml PORTVERSION= 0.5 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= textproc MASTER_SITES= SF/chicago/${PORTNAME}/backend @@ -17,6 +17,11 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes USES= gmake tar:tgz +# If autotools are installed in the build environment a regeneration +# of it's build files is triggered for unknown reasons. Pretend they +# are not there. +BINARY_ALIAS= aclocal=false autoheader=false automake=false makeinfo=false + OPTIONS_DEFINE= DOCS post-install-DOCS-on: @@ -26,5 +31,9 @@ post-install-DOCS-on: ${INSTALL_DATA} ChangeLog README THANKS \ ${STAGEDIR}${DOCSDIR}/${dir} .endfor + +post-build: + @${STRIP_CMD} ${WRKSRC}/xlhtml/xlhtml + @${STRIP_CMD} ${WRKSRC}/ppthtml/ppthtml .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806190029.w5J0TGKC082169>