aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2016-12-17 17:54:00 +0000
committerJohn Marino <marino@FreeBSD.org>2016-12-17 17:54:00 +0000
commit6b0cee2259c060ce0fdca59527867b7c9441cd7c (patch)
treecc1590affbec5857af1bb6ef7bdae06a6652f4f8 /audio
parentae9ba0378ec61e42be94f222d3a437af9120d978 (diff)
downloadports-6b0cee2259c060ce0fdca59527867b7c9441cd7c.tar.gz
ports-6b0cee2259c060ce0fdca59527867b7c9441cd7c.zip
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
Notes
Notes: svn path=/head/; revision=428792
Diffstat (limited to 'audio')
-rw-r--r--audio/playgsf/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/audio/playgsf/Makefile b/audio/playgsf/Makefile
index 714bbf57a2e1..d6e68e0994a4 100644
--- a/audio/playgsf/Makefile
+++ b/audio/playgsf/Makefile
@@ -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|' \