svn commit: r418288 - head/audio/portaudio

Kurt Jaeger pi at FreeBSD.org
Sat Jul 9 18:59:21 UTC 2016


Author: pi
Date: Sat Jul  9 18:59:19 2016
New Revision: 418288
URL: https://svnweb.freebsd.org/changeset/ports/418288

Log:
  audio/portaudio: fix test program installation
  
  - Before the patch the libtool wrapper scripts were installed
    instead of real test programs
  
  PR:		210455
  Submitted by:	Tobias Kortkamp <t at tobik.me>
  Approved by:	koalative at gmail.com (maintainer timeout)

Modified:
  head/audio/portaudio/Makefile

Modified: head/audio/portaudio/Makefile
==============================================================================
--- head/audio/portaudio/Makefile	Sat Jul  9 18:43:40 2016	(r418287)
+++ head/audio/portaudio/Makefile	Sat Jul  9 18:59:19 2016	(r418288)
@@ -3,7 +3,7 @@
 
 PORTNAME=	portaudio
 DISTVERSION=	19_20140130
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio
 MASTER_SITES=	http://www.portaudio.com/archives/
 DISTNAME=	pa_stable_v${DISTVERSION}
@@ -60,7 +60,8 @@ post-install:
 
 post-install-PATEST-on:
 .for f in ${PATEST_BIN}
-	${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${STAGEDIR}${PREFIX}/bin/
+	${STRIP_CMD} ${WRKSRC}/bin/.libs/${f}
+	${INSTALL_PROGRAM} ${WRKSRC}/bin/.libs/${f} ${STAGEDIR}${PREFIX}/bin/
 .endfor
 
 post-install-DOCS-on:


More information about the svn-ports-all mailing list