svn commit: r472723 - head/textproc/xlhtml

Steve Wills swills at FreeBSD.org
Tue Jun 19 00:29:17 UTC 2018


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 at 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>


More information about the svn-ports-all mailing list