diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2014-03-19 13:28:59 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2014-03-19 13:28:59 +0000 |
commit | 4ea18476790c819cd2836ee38327e7a77b4ca6b1 (patch) | |
tree | 04850fac53c356d00b310c0d04ca1085a7ea03ee | |
parent | 18fadfbd94c505b24077424e9f40aea7860132dc (diff) | |
download | ports-4ea18476790c819cd2836ee38327e7a77b4ca6b1.tar.gz ports-4ea18476790c819cd2836ee38327e7a77b4ca6b1.zip |
Notes
-rw-r--r-- | audio/libconvolve/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/audio/libconvolve/Makefile b/audio/libconvolve/Makefile index cc8814a43166..6d13566124ac 100644 --- a/audio/libconvolve/Makefile +++ b/audio/libconvolve/Makefile @@ -3,7 +3,7 @@ PORTNAME= libconvolve PORTVERSION= 0.0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= SF/heaven/Audio%20Applications/Jack%20Related/jack_convolve/ EXTRACT_SUFX= .tgz @@ -20,7 +20,13 @@ LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 \ libsndfile.so:${PORTSDIR}/audio/libsndfile USES= gmake pkgconfig -NO_STAGE= yes USE_LDCONFIG= yes +post-patch: + @${REINPLACE_CMD} -e '/cp / s|PREFIX|DESTDIR)$$(&|g' \ + -e '/ln / s|PREFIX|DESTDIR)$$(&|2' \ + ${WRKSRC}/Makefile +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so.0.0.8 + .include <bsd.port.mk> |