diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-13 06:11:35 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-13 06:11:35 +0800 |
commit | feefd9d4620bc912f9142295643745e9fe79da98 (patch) | |
tree | 8664338b5fd5b555523c5942d839c1f0b8e45a09 /audio | |
parent | 32bdeab5029848c9b00627e59da17f34788f8ebd (diff) | |
download | freebsd-ports-gnome-feefd9d4620bc912f9142295643745e9fe79da98.tar.gz freebsd-ports-gnome-feefd9d4620bc912f9142295643745e9fe79da98.tar.zst freebsd-ports-gnome-feefd9d4620bc912f9142295643745e9fe79da98.zip |
- Strip shared objects
- Support staging
Diffstat (limited to 'audio')
-rw-r--r-- | audio/tap-plugins/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/audio/tap-plugins/Makefile b/audio/tap-plugins/Makefile index 9e0572ac2b0e..6cf8b01e6654 100644 --- a/audio/tap-plugins/Makefile +++ b/audio/tap-plugins/Makefile @@ -11,7 +11,6 @@ COMMENT= LADSPA Plugins by Tom Szilagy LICENSE= GPLv2 -NO_STAGE= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I. -c -fPIC -DPIC" \ LDFLAGS="-nostartfiles -shared -Wl,-Bsymbolic -lm" @@ -20,9 +19,11 @@ post-patch: 's|<stdint\.h>|<inttypes.h>|g' do-install: - ${MKDIR} ${PREFIX}/lib/ladspa - ${INSTALL_DATA} ${WRKSRC}/*.so ${PREFIX}/lib/ladspa/ - ${MKDIR} ${PREFIX}/share/ladspa/rdf/ - ${INSTALL_DATA} ${WRKSRC}/tap-plugins.rdf ${PREFIX}/share/ladspa/rdf/ + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/ladspa + ${INSTALL_DATA} ${WRKSRC}/*.so ${STAGEDIR}${PREFIX}/lib/ladspa/ + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ladspa/*.so + ${MKDIR} ${STAGEDIR}${PREFIX}/share/ladspa/rdf/ + ${INSTALL_DATA} ${WRKSRC}/tap-plugins.rdf \ + ${STAGEDIR}${PREFIX}/share/ladspa/rdf/ .include <bsd.port.mk> |