Date: Sat, 17 Dec 2016 17:54:01 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428792 - head/audio/playgsf Message-ID: <201612171754.uBHHs1Kn004562@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Sat Dec 17 17:54:00 2016 New Revision: 428792 URL: https://svnweb.freebsd.org/changeset/ports/428792 Log: audio/playgsf: Remove packaged static library which circumvents Makefile It appears that the static resample library should not have been part of the distribution tarball. It's presence causes libresample.a not to be built and to be used instead. It was detected by DF's ar programs which reported it as malformed. Fix the distribution issue by removing the pre-existing library and force it to be rebuilt. Approved by: just-fix-it Modified: head/audio/playgsf/Makefile Modified: head/audio/playgsf/Makefile ============================================================================== --- head/audio/playgsf/Makefile Sat Dec 17 17:47:59 2016 (r428791) +++ head/audio/playgsf/Makefile Sat Dec 17 17:54:00 2016 (r428792) @@ -3,7 +3,7 @@ PORTNAME= playgsf PORTVERSION= 0.7.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://projects.raphnet.net/playgsf/ \ LOCAL/ehaupt @@ -28,6 +28,10 @@ ONLY_FOR_ARCHS= i386 amd64 PORTSCOUT= skipv:0.7.2 +post-extract: + # Don't use accidentally packaged static library + @${RM} ${WRKSRC}/libresample-0.1.3/libresample.a + post-patch: @${REINPLACE_CMD} \ -e 's|\([[:space:]]*\).*configure.*|\1@true|' \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612171754.uBHHs1Kn004562>